Files
EIS-dotnet/compose.yaml
T
2026-07-22 18:22:52 +08:00

23 lines
434 B
YAML

services:
app:
build:
context: .
image: exam-information-system:local
init: true
restart: unless-stopped
env_file:
- .env.docker
environment:
NODE_ENV: production
HOST: 0.0.0.0
PORT: 4173
DATABASE_CLIENT: sqlite
SQLITE_PATH: /app/data/exam.sqlite
ports:
- "4173:4173"
volumes:
- exam-information-data:/app/data
volumes:
exam-information-data: