Initial commit: N64 Tracker source from server (excludes Coverart images)

This commit is contained in:
mattie726 2026-08-25 22:54:08 -07:00 committed by Barely Removable
commit ccf87df36d
14 changed files with 10105 additions and 0 deletions

13
docker-compose.yml Normal file
View file

@ -0,0 +1,13 @@
services:
n64-tracker:
build: .
ports:
- "8585:5000"
volumes:
# Persistent game data (ownership state survives rebuilds)
- ./data:/app/data
# Local Coverart folder with cover art (read-only bind mount)
- ./Coverart:/app/coverart:ro
env_file: .env
restart: unless-stopped