Files
no-copy-frontend/docker-compose.yml
T

26 lines
502 B
YAML
Raw Normal View History

2025-12-03 12:13:32 +07:00
version: '3.8'
services:
frontend:
container_name: no-copy-frontend
build:
context: .
dockerfile: Dockerfile
ports:
- "2998:2999"
environment:
- NODE_ENV=production
- PORT=2999
2025-12-03 15:38:54 +07:00
- DOCKER_ENV=true
2025-12-04 13:25:13 +07:00
- SESSION_SECRET=${SESSION_SECRET}
2025-12-03 12:13:32 +07:00
volumes:
- ./public:/app/public
- ./package.json:/app/package.json
2025-12-03 16:34:12 +07:00
restart: unless-stopped
networks:
- app-network
networks:
app-network:
2025-12-04 10:25:47 +07:00
external: true
2025-12-03 16:34:12 +07:00
name: app-network