Skip to content

Instantly share code, notes, and snippets.

@initcron
Created December 31, 2020 10:47
Show Gist options
  • Select an option

  • Save initcron/91ac1537072c471a31d8b286d06775f7 to your computer and use it in GitHub Desktop.

Select an option

Save initcron/91ac1537072c471a31d8b286d06775f7 to your computer and use it in GitHub Desktop.
Docker Compose Spec with Links
vote:
image: initcron/vote:latest
ports:
- 5000:80
links:
- redis:redis
redis:
image: redis:alpine
db:
image: postgres:9.4
result:
image: initcron/result:latest
ports:
- 5001:4000
links:
- db:db
worker:
image: initcron/worker:latest
links:
- redis:redis
- db:db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment