Added Files

This commit is contained in:
2021-02-28 14:56:12 +00:00
parent 55f0742583
commit f587860fe9
2 changed files with 1 additions and 1 deletions

19
docker-compose-nginx.yml Normal file
View File

@@ -0,0 +1,19 @@
version: "3"
services:
nginx:
image: nginx
container_name: nginx-simple
restart: always
network_mode: "bridge"
volumes:
- nginx_volume:/usr/share/nginx/html
ports:
- 8080:80
volumes:
nginx_volume:
driver: local
driver_opts:
type: "nfs"
o: "nfsvers=4,addr=192.168.10.4,rw"
device: ":/volume1/Docker/docker/test"