Add docker-compose.yml

This commit is contained in:
2025-10-26 10:58:13 +00:00
commit 04a9c1d1fa

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
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"