compose.yaml 528 B

123456789101112131415161718192021222324252627282930313233
  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. secrets:
  19. - mysecret
  20. volumes:
  21. staticVol:
  22. otherVol:
  23. name: myVolume
  24. configs:
  25. myconfig:
  26. file: ./static/index.html
  27. secrets:
  28. mysecret:
  29. file: ./static/index.html