Skip to content

Instantly share code, notes, and snippets.

@initcron
Last active September 20, 2020 14:37
Show Gist options
  • Save initcron/66794d427fbc1cd51507c0577f7d1552 to your computer and use it in GitHub Desktop.
Save initcron/66794d427fbc1cd51507c0577f7d1552 to your computer and use it in GitHub Desktop.
version: "3"
networks:
nw01:
driver: bridge
volumes:
db-data:
services:
vote:
image: schoolofdevops/vote:movies
links:
- redis:redis
ports:
- 80
networks:
- nw01
depends_on:
- redis
redis:
image: redis:alpine
networks:
- nw01
worker:
image: schoolofdevops/vote-worker
links:
- redis:redis
networks:
- nw01
depends_on:
- redis
db:
image: postgres:9.4
networks:
- nw01
volumes:
- db-data:/var/lib/postgresql/data
result:
image: schoolofdevops/vote-result
ports:
- 5001:80
networks:
- nw01
depends_on:
- db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment