Last active
February 10, 2016 23:03
-
-
Save jcpowermac/94dcbf52346e64b2e953 to your computer and use it in GitHub Desktop.
hanlon_docker_compose
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
| --- | |
| mongo: | |
| image: mongo | |
| command: mongod --smallfiles | |
| volumes: | |
| - "/opt/hanlon/data/db:/data/db" | |
| server: | |
| image: "cscdock/hanlon" | |
| ports: | |
| - 8026:8026 | |
| links: | |
| - mongo:mongo | |
| privileged: true | |
| volumes: | |
| - "/opt/hanlon/image:/home/hanlon/image" | |
| - "/opt/hanlon/cli/config:/home/hanlon/cli/config" | |
| env_file: hanlon.env | |
| # environment: | |
| # DOCKER_HOST: "${DOCKER_HOST}" | |
| # HANLON_SUBNETS: "${HANLON_SUBNETS}" | |
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
| DOCKER_HOST=10.53.252.60 | |
| HANLON_SUBNETS=172.17.42.1/16,10.53.0.0/16 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment