Created
February 14, 2018 11:39
-
-
Save leanderjanssen/8e97183b3f1cf69f0c519f2613c0990e to your computer and use it in GitHub Desktop.
Dockercoins compose
This file contains 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: "3.1" | |
services: | |
rng: | |
image: training/dockercoins_rng:1.0 | |
networks: | |
- dockercoins | |
ports: | |
- "8001:80" | |
hasher: | |
image: training/dockercoins_hasher:1.0 | |
networks: | |
- dockercoins | |
ports: | |
- "8002:80" | |
webui: | |
image: training/dockercoins_webui:1.0 | |
networks: | |
- dockercoins | |
ports: | |
- "8000:80" | |
redis: | |
image: redis | |
networks: | |
- dockercoins | |
worker: | |
image: training/dockercoins_worker:1.0 | |
networks: | |
- dockercoins | |
networks: | |
dockercoins: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment