Last active
March 9, 2017 22:25
-
-
Save ecliptik/bd6b6549c1abf29f88018ecbb4670301 to your computer and use it in GitHub Desktop.
Named Local Volume
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: '2' | |
volumes: | |
data: | |
driver: local | |
services: | |
worker1: | |
image: worker1 | |
stdin_open: true | |
volumes: | |
- data:/db/files | |
worker2: | |
image: worker2 | |
stdin_open: true | |
volumes: | |
- data:/db/files | |
worker3: | |
image: worker3 | |
stdin_open: true | |
volumes: | |
- data:/db/files | |
web: | |
image: web | |
stdin_open: true | |
volumes: | |
- data:/db/files | |
ports: | |
- 23000:3000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment