This commit is contained in:
2026-06-15 22:46:12 +08:00
commit f6508eccdb
38 changed files with 3133 additions and 0 deletions

21
docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
services:
redis:
image: redis:8-alpine
container_name: synctv-redis
command: ["redis-server", "--appendonly", "no"]
ports:
- "6379:6379"
server:
build:
context: .
dockerfile: server/Dockerfile
container_name: synctv-server
environment:
SYNCTV_CONFIG: /app/config/server.json
volumes:
- ./config/server.json:/app/config/server.json:ro
ports:
- "8080:8080"
depends_on:
- redis