docker-compose.yml 312 B

12345678910111213141516171819
  1. version: "3.9"
  2. services:
  3. app:
  4. build:
  5. dockerfile: Dockerfile
  6. context: .
  7. volumes:
  8. - .:/usr/src/app
  9. environment:
  10. - 3005:3005
  11. ports:
  12. - "3005:3005"
  13. networks:
  14. - api_network
  15. extra_hosts:
  16. - "host.docker.internal:host-gateway"
  17. networks:
  18. api_network: