diff --git a/docker-compose.yaml b/docker-compose.yaml index f74b8e4..7958679 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -2,11 +2,13 @@ version: '3.8' services: fuego-app: - build: . - env_file: .env # your DB_HOST, DB_USER, etc. + build: + context: . + dockerfile: Dockerfile + extra_hosts: + - "host.docker.internal:host-gateway" + env_file: + - .env ports: - "3000:3000" restart: unless-stopped - # ↓ remove this bind-mount in production, it hides your built server.js - # volumes: - # - .:/usr/src/app