2024-03-20 13:57:39 +00:00
|
|
|
|
;;; dockerfile-mode-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*-
|
|
|
|
|
;; Generated by the `loaddefs-generate' function.
|
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2022-04-22 02:54:47 +00:00
|
|
|
|
;;; Code:
|
|
|
|
|
|
2024-03-20 13:57:39 +00:00
|
|
|
|
(add-to-list 'load-path (or (and load-file-name (directory-file-name (file-name-directory load-file-name))) (car load-path)))
|
|
|
|
|
|
2022-04-22 02:54:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Generated autoloads from dockerfile-mode.el
|
|
|
|
|
|
|
|
|
|
(autoload 'dockerfile-build-buffer "dockerfile-mode" "\
|
|
|
|
|
Build an image called IMAGE-NAME based upon the buffer.
|
|
|
|
|
|
2022-09-13 19:06:22 +00:00
|
|
|
|
If the prefix arg NO-CACHE is set, don't cache the image.
|
|
|
|
|
|
|
|
|
|
The shell command used to build the image is:
|
|
|
|
|
|
|
|
|
|
sudo docker build \\
|
|
|
|
|
--no-cache \\
|
|
|
|
|
--force-rm \\
|
|
|
|
|
--pull \\
|
|
|
|
|
--tag IMAGE-NAME \\
|
|
|
|
|
--build-args args \\
|
|
|
|
|
--progress type \\
|
|
|
|
|
-f filename \\
|
|
|
|
|
directory
|
2022-04-22 02:54:47 +00:00
|
|
|
|
|
2024-03-20 13:57:39 +00:00
|
|
|
|
(fn IMAGE-NAME &optional NO-CACHE)" t)
|
2022-04-22 02:54:47 +00:00
|
|
|
|
(autoload 'dockerfile-build-no-cache-buffer "dockerfile-mode" "\
|
|
|
|
|
Build an image called IMAGE-NAME based upon the buffer without cache.
|
|
|
|
|
|
2024-03-20 13:57:39 +00:00
|
|
|
|
(fn IMAGE-NAME)" t)
|
2022-04-22 02:54:47 +00:00
|
|
|
|
(autoload 'dockerfile-mode "dockerfile-mode" "\
|
|
|
|
|
A major mode to edit Dockerfiles.
|
|
|
|
|
\\{dockerfile-mode-map}
|
|
|
|
|
|
2024-03-20 13:57:39 +00:00
|
|
|
|
(fn)" t)
|
2022-09-13 19:06:22 +00:00
|
|
|
|
(add-to-list 'auto-mode-alist (cons (concat "[/\\]" "\\(?:Containerfile\\|Dockerfile\\)" "\\(?:\\.[^/\\]*\\)?\\'") 'dockerfile-mode))
|
2022-04-22 02:54:47 +00:00
|
|
|
|
(add-to-list 'auto-mode-alist '("\\.dockerfile\\'" . dockerfile-mode))
|
2022-04-22 04:48:52 +00:00
|
|
|
|
(register-definition-prefixes "dockerfile-mode" '("dockerfile-"))
|
2022-04-22 02:54:47 +00:00
|
|
|
|
|
2024-03-20 13:57:39 +00:00
|
|
|
|
;;; End of scraped data
|
|
|
|
|
|
|
|
|
|
(provide 'dockerfile-mode-autoloads)
|
|
|
|
|
|
2022-04-22 02:54:47 +00:00
|
|
|
|
;; Local Variables:
|
|
|
|
|
;; version-control: never
|
|
|
|
|
;; no-byte-compile: t
|
|
|
|
|
;; no-update-autoloads: t
|
2024-03-20 13:57:39 +00:00
|
|
|
|
;; no-native-compile: t
|
|
|
|
|
;; coding: utf-8-emacs-unix
|
2022-04-22 02:54:47 +00:00
|
|
|
|
;; End:
|
2024-03-20 13:57:39 +00:00
|
|
|
|
|
2022-04-22 02:54:47 +00:00
|
|
|
|
;;; dockerfile-mode-autoloads.el ends here
|