Files
coolify-examples/docker-compose-test/docker-compose-shared-volume.yaml
2025-09-24 17:39:46 +02:00

21 lines
362 B
YAML

services:
web:
container_name: web
image: nginx
restart: unless-stopped
volumes:
- 'static-data:/var/www/html:ro'
expose:
- '80'
- '443'
depends_on:
- app
app:
container_name: app
image: nginx
restart: unless-stopped
working_dir: /var/www/html
volumes:
- 'static-data:/var/www/html'