Skip to content

Instantly share code, notes, and snippets.

@nielsonsantana
Created October 20, 2017 21:57
Show Gist options
  • Save nielsonsantana/ee1d535f6824fb938a35a54b322f0001 to your computer and use it in GitHub Desktop.
Save nielsonsantana/ee1d535f6824fb938a35a54b322f0001 to your computer and use it in GitHub Desktop.
Docker Compose with dependences for tsuru pas
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