Last active
February 6, 2018 17:23
-
-
Save skliarpawlo/7a870d19cfc0cce219707bad58589c6a to your computer and use it in GitHub Desktop.
use emacs docker compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
emacs: | |
build: | |
dockerfile: /Users/psk/dev/dotfiles/ide/Dockerfile | |
context: /Users/psk/dev/dotfiles/ide/ | |
args: | |
- SUBDIR=tool-castor | |
environment: | |
- DISPLAY=$DISPLAY | |
- SUBDIR=tool-castor | |
- AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID | |
- AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY | |
volumes: | |
- .:/opt/castor/ | |
depends_on: | |
elastic.docker: | |
condition: service_healthy | |
cassandra.docker: | |
condition: service_healthy | |
kafka.docker: | |
condition: service_healthy | |
mysql.docker: | |
condition: service_healthy | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment