compose.yml 447 B

123456789101112131415161718192021222324252627
  1. services:
  2. nginx:
  3. build: nginx-build
  4. volumes:
  5. - ./static:/usr/share/nginx/html
  6. ports:
  7. - 8090:80
  8. nginx2:
  9. build: nginx-build
  10. volumes:
  11. - staticVol:/usr/share/nginx/html:ro
  12. - /usr/src/app/node_modules
  13. - otherVol:/usr/share/nginx/test
  14. ports:
  15. - 9090:80
  16. configs:
  17. - myconfig
  18. volumes:
  19. staticVol:
  20. otherVol:
  21. name: myVolume
  22. configs:
  23. myconfig:
  24. file: ./static/index.html