This commit is contained in:
smanylov
2026-01-19 12:55:41 +07:00
parent 8ae5a072e9
commit fe8b6e42cc
34 changed files with 3930 additions and 0 deletions

25
docker-compose.yml Normal file
View File

@@ -0,0 +1,25 @@
version: '3.8'
services:
frontend:
container_name: no-copy-admin-panel-frontend
build:
context: .
dockerfile: Dockerfile
ports:
- "2996:2996"
environment:
- NODE_ENV=production
- PORT=2996
- DOCKER_ENV=true
volumes:
- ./public:/app/public
- ./package.json:/app/package.json
restart: unless-stopped
networks:
- app-network
networks:
app-network:
external: true
name: app-network