mirror of https://github.com/docker/compose.git
24 lines
391 B
YAML
24 lines
391 B
YAML
services:
|
|
db:
|
|
build: db
|
|
image: gtardif/sentences-db
|
|
|
|
words:
|
|
build: words
|
|
image: gtardif/sentences-api
|
|
|
|
web:
|
|
build: web
|
|
image: gtardif/sentences-web
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- mydata:/mount/testvolumes
|
|
|
|
volumes:
|
|
mydata:
|
|
driver: azure_file
|
|
driver_opts:
|
|
share_name: minecraft-volume
|
|
storage_account_name: minecraftdocker
|