Advertisement
nmotter

Stack-Compose file

Jun 2nd, 2020
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. version: "3.7"
  2. services:
  3. web:
  4. image: nginx
  5. volumes:
  6. - nginx.vol:/usr/share/nginx/html
  7. ports:
  8. - 80:80
  9. networks:
  10. - web
  11.  
  12. networks:
  13. web:
  14. driver: overlay
  15. name: web
  16.  
  17. volumes:
  18. nginx.vol:
  19. driver_opts:
  20. type: "nfs"
  21. o: "addr=192.168.0.4,nolock,soft,rw"
  22. device: ":/export/docker_volumes/nginx_we
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement