compose/tests/compose-e2e/fixtures/volume-test/docker-compose.yml
Djordje Lukic 7a841b98da Don't share the compose file with ACI
ACI doesn't support service labels, we need to split

Signed-off-by: Djordje Lukic <djordje.lukic@docker.com>
2020-12-09 12:02:04 +01:00

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: