Files
TermorServer/docker-compose.yml
benya 2b3123a9a7 feat: bootstrap temporserv project scaffold
Add the initial project blueprint, Go backend skeleton, frontend app shell, database schema draft, and local development/deployment files.
2026-04-02 22:17:48 +03:00

21 lines
389 B
YAML

version: "3.9"
services:
app:
build:
context: .
dockerfile: deploy/Dockerfile
ports:
- "4040:4040"
environment:
APP_ENV: production
SERVER_HOST: 0.0.0.0
SERVER_PORT: 4040
DATABASE_PATH: /app/data/app.db
MEDIA_ROOT: /music
CORS_ORIGINS: http://localhost:4040
volumes:
- ./data:/app/data
- ./media:/music