Created
October 20, 2014 21:16
-
-
Save Quantisan/3111db02ea4516a4e667 to your computer and use it in GitHub Desktop.
Fig continuous dev setup
This file contains hidden or 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
FROM clojure | |
ADD . /usr/src/app | |
WORKDIR /usr/src/app | |
RUN lein deps |
This file contains hidden or 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
web: | |
build: . | |
command: lein run 8000 | |
volumes: | |
- .:/usr/src/app | |
environment: | |
APP_ENV: "develop" | |
ports: | |
- "8002:8000" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment