feat: Add Docker Compose configuration and a .gitignore file for the frontend management service.

This commit is contained in:
Missez 2026-02-05 14:41:35 +07:00
parent 91330c03c2
commit 5e996b708b
2 changed files with 3 additions and 1 deletions

View file

@ -22,3 +22,4 @@ logs
.env
.env.*
!.env.example
deploy.ps1

View file

@ -8,6 +8,8 @@ services:
container_name: elearning-frontend-management
ports:
- "3001:3001"
security_opt:
- apparmor=unconfined
environment:
- NODE_ENV=production
- NUXT_PUBLIC_API_BASE_URL=${NUXT_PUBLIC_API_BASE_URL:-http://localhost:4000/api}
@ -20,7 +22,6 @@ services:
start_period: 40s
networks:
- elearning-network
privileged: true
networks:
elearning-network: