mirror of https://github.com/docker/compose.git
26 lines
407 B
YAML
26 lines
407 B
YAML
version: '3.3'
|
|
|
|
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
|