dockerfile-mode icon indicating copy to clipboard operation
dockerfile-mode copied to clipboard

An emacs mode for handling Dockerfiles

Results 13 dockerfile-mode issues
Sort by recently updated
recently updated
newest added

Emacs offers standard variables for configuring indentation styles, such as `indent-tabs-mode` and `sws-tab-width`. When an Emacs user configures these globally, it is expected that the different programming modes respect these...

Talking about this commit: https://github.com/spotify/dockerfile-mode/commit/9f4381178aa03212cd3400c60c0f48ff306a0994 I'm not sure how its for others but for some reason for me whenever I press RET and type any random character it automatically indents....

I'm using heavily `dockerfile-mode`. I've found it awesomely useful! Thanks for sharing. I use it under [Spacemacs](https://develop.spacemacs.org)'s [docker layer](https://develop.spacemacs.org/layers/+tools/docker/README.html), which neatly merges `dockerfile-mode` with [silex's docker package](https://github.com/silex/docker.el). Based on daily...

Context: Currently dockerfile-mode uses `default-directory` to determine the execution PATH provided to the `docker build` command call. This doesn't play nicely with project setups that store their docker file in...

When I try to install dockerfile-mode via MELPA, I get this error: ```console (file-error "https://melpa.org/packages/dockerfile-mode-20160128.951.el" "Not found") signal(file-error ("https://melpa.org/packages/dockerfile-mode-20160128.951.el" "Not found")) ```

The build command (^C-^B) was escaping` ~/mydockerimagedir` into the nonexistent `\~/mydockerimagedir`. I fixed by removing shell-quote-argument from the end of compilation-start. As this argument appears to be automatically set to...

After installing dockerfile-mode via [req-package](https://github.com/edvorg/req-package) as follows: ``` (req-package dockerfile-mode :config (add-to-list 'auto-mode-alist '("Dockerfile\\'" . dockerfile-mode))) ``` I receive the error: `eval-buffer: Required feature ‘s’ was not provided` But I...

Hello, When `dockerfile-use-sudo` is enabled, `sudo` asks for the password in the compilation buffer (unless it's configured password-less, I guess). Would it be somehow possible to ask it in the...

Hi - I don't see an obvious way to create a term buffer instead of a shell buffer.. so I wrote the below. Let me know if there is a...

I use spacemacs and in my configuration, both LSP-mode and Dockerfile mode are enabled when editing an image description file. **Issue**: when indenting a line (no matter the content), the...