3c8e6f0cc5
Finally ported my up-to-date emacs configuration here. I was putting this off for a long while, unsure of how to handle all of the work. All it took was my laptop being fried to force me to do this. So... voila!
18 lines
417 B
EmacsLisp
18 lines
417 B
EmacsLisp
;;; docker.el --- Docker preferences -*- lexical-binding: t -*-
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
|
|
|
;;; Commentary:
|
|
;; My Docker preferences and configuration
|
|
|
|
;;; Code:
|
|
|
|
(use-package docker
|
|
:config
|
|
(setenv "DOCKER_TLS_VERIFY" "1")
|
|
(setenv "DOCKER_HOST" "tcp://10.11.12.13:2376")
|
|
(setenv "DOCKER_MACHINE_NAME" "name"))
|
|
|
|
(use-package dockerfile-mode)
|
|
|
|
(provide 'wpc-docker)
|
|
;;; docker.el ends here
|