4
0

compose.yaml 299 B

1234567891011121314151617
  1. services:
  2. proxy:
  3. image: nginx
  4. volumes:
  5. - type: bind
  6. source: ./proxy/nginx.conf
  7. target: /etc/nginx/conf.d/default.conf
  8. read_only: true
  9. ports:
  10. - 80:80
  11. depends_on:
  12. - backend
  13. backend:
  14. build:
  15. context: backend
  16. target: builder