Files
coolify-examples/docker-compose-double-mount/docker-compose.yaml
T
2026-04-29 14:17:33 +02:00

10 lines
268 B
YAML

services:
web1:
image: 'nginx:alpine'
volumes:
- '/data/coolify/test/data/index1.html:/usr/share/nginx/html/index.html:ro'
web2:
image: 'nginx:alpine'
volumes:
- '/data/coolify/test/data/index2.html:/usr/share/nginx/html/index.html:ro'