Files
test-marco/docker-compose.yml
2025-10-26 10:58:44 +00:00

18 lines
317 B
YAML

version: "3.9"
services:
web:
image: nginx:latest
ports:
- "8080:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- nfsdata:/usr/share/nginx/html:ro
volumes:
nfsdata:
driver_opts:
type: "nfs"
o: "addr=192.168.1.100,nfsvers=4,ro"
device: ":/export/shared"