mirror of
https://github.com/docker/compose.git
synced 2026-09-21 13:04:36 +00:00
ACI doesn't support service labels, we need to split Signed-off-by: Djordje Lukic <djordje.lukic@docker.com>
18 lines
No EOL
294 B
YAML
18 lines
No EOL
294 B
YAML
services:
|
|
nginx:
|
|
build: nginx-build
|
|
volumes:
|
|
- ./static:/usr/share/nginx/html
|
|
ports:
|
|
- 8090:80
|
|
|
|
nginx2:
|
|
build: nginx-build
|
|
volumes:
|
|
- staticVol:/usr/share/nginx/html:ro
|
|
- /usr/src/app/node_modules
|
|
ports:
|
|
- 9090:80
|
|
|
|
volumes:
|
|
staticVol: |