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

17 lines
271 B
YAML

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