feat: docker for production deployment

This commit is contained in:
2025-07-22 11:46:29 +04:00
parent ab29a8692e
commit 6b728f3780
8 changed files with 86 additions and 4 deletions

20
compose.yml Normal file
View File

@ -0,0 +1,20 @@
services:
logidex-id-frontend:
image: git.logidex.ru/aserbin/logidex-id-frontend:latest
container_name: logidex-id-frontend
environment:
- NODE_ENV=production
ports:
- "3001:3000"
restart: unless-stopped
deploy:
resources:
limits:
cpus: "1.0"
memory: "500m"
networks:
- logidex-id-network
networks:
logidex-id-network:
driver: bridge