docker-compose.yml 294 B

123456789101112131415161718
  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. ports:
  14. - 9090:80
  15. volumes:
  16. staticVol: