config

Personal configuration.
git clone git://code.dwrz.net/config
Log | Files | Refs

dockerfile-mode-autoloads.el (1696B)


      1 ;;; dockerfile-mode-autoloads.el --- automatically extracted autoloads (do not edit)   -*- lexical-binding: t -*-
      2 ;; Generated by the `loaddefs-generate' function.
      3 
      4 ;; This file is part of GNU Emacs.
      5 
      6 ;;; Code:
      7 
      8 (add-to-list 'load-path (or (and load-file-name (directory-file-name (file-name-directory load-file-name))) (car load-path)))
      9 
     10 
     11 
     12 ;;; Generated autoloads from dockerfile-mode.el
     13 
     14 (autoload 'dockerfile-build-buffer "dockerfile-mode" "\
     15 Build an image called IMAGE-NAME based upon the buffer.
     16 
     17 If the prefix arg NO-CACHE is set, don't cache the image.
     18 
     19 The shell command used to build the image is:
     20 
     21     sudo docker build    \\
     22       --no-cache         \\
     23       --force-rm         \\
     24       --pull             \\
     25       --tag IMAGE-NAME   \\
     26       --build-args args  \\
     27       --progress type    \\
     28       -f filename        \\
     29       directory
     30 
     31 (fn IMAGE-NAME &optional NO-CACHE)" t)
     32 (autoload 'dockerfile-build-no-cache-buffer "dockerfile-mode" "\
     33 Build an image called IMAGE-NAME based upon the buffer without cache.
     34 
     35 (fn IMAGE-NAME)" t)
     36 (autoload 'dockerfile-mode "dockerfile-mode" "\
     37 A major mode to edit Dockerfiles.
     38 \\{dockerfile-mode-map}
     39 
     40 (fn)" t)
     41 (add-to-list 'auto-mode-alist (cons (concat "[/\\]" "\\(?:Containerfile\\|Dockerfile\\)" "\\(?:\\.[^/\\]*\\)?\\'") 'dockerfile-mode))
     42 (add-to-list 'auto-mode-alist '("\\.dockerfile\\'" . dockerfile-mode))
     43 (register-definition-prefixes "dockerfile-mode" '("dockerfile-"))
     44 
     45 ;;; End of scraped data
     46 
     47 (provide 'dockerfile-mode-autoloads)
     48 
     49 ;; Local Variables:
     50 ;; version-control: never
     51 ;; no-byte-compile: t
     52 ;; no-update-autoloads: t
     53 ;; no-native-compile: t
     54 ;; coding: utf-8-emacs-unix
     55 ;; End:
     56 
     57 ;;; dockerfile-mode-autoloads.el ends here