Files
coastal_timesheet/docker-compose.dev.yml
T

23 lines
418 B
YAML

version: '3.8'
services:
coastal-timesheet-dev:
build:
context: .
dockerfile: Dockerfile.dev
container_name: coastal-timesheet-dev
ports:
- "5173:5173"
volumes:
- .:/app
- /app/node_modules
environment:
- NODE_ENV=development
stdin_open: true
tty: true
networks:
- timesheet-dev-network
networks:
timesheet-dev-network:
driver: bridge