Created
October 20, 2017 21:57
-
-
Save nielsonsantana/ee1d535f6824fb938a35a54b322f0001 to your computer and use it in GitHub Desktop.
Docker Compose with dependences for tsuru pas
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
version: '2' | |
services: | |
planb: | |
container_name: tsuru_planb | |
image: "tsuru/planb" | |
network_mode: "host" | |
entrypoint: /bin/planb --listen :80 | |
depends_on: | |
- redis | |
mongo: | |
image: mongo | |
container_name: mongodb | |
network_mode: "host" | |
ports: | |
- "27017:27017" | |
restart: always | |
redis: | |
container_name: redis | |
image: "redis:3-alpine" | |
restart: always | |
ports: | |
- "6379:6379" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment