Files
next-web/docker-compose.yml
T

19 lines
476 B
YAML
Raw Normal View History

2025-06-25 16:45:58 -04:00
services:
web:
build:
context: .
dockerfile: Dockerfile.dev
ports:
- "3001:3001"
2026-07-23 10:38:20 -04:00
environment:
- BE_API_SERVER_HOST=web_api
- BE_API_SERVER_PORT=3005
2025-06-25 16:45:58 -04:00
volumes:
- .:/usr/src/app # Mount the current directory into the container for live reloading
2026-07-23 10:38:20 -04:00
- /usr/src/app/node_modules # Isolate node_modules to prevent host-container conflicts
networks:
- britton_network
networks:
britton_network:
external: true