docker-compose.yml 198 B

1234567891011121314
  1. version: "3.6"
  2. services:
  3. frontend:
  4. image: nginx
  5. ports:
  6. - 8080:80
  7. volumes:
  8. - ./nginx.conf:/etc/nginx/conf.d/default.conf
  9. depends_on:
  10. - backend
  11. backend:
  12. build: .