Update binary name, DB path, session cookie, deploy scripts, systemd service, Docker config, CI workflow, and .dockerignore. Remove stale Claude command and settings files.
15 lines
247 B
YAML
15 lines
247 B
YAML
services:
|
|
games:
|
|
build: .
|
|
container_name: games
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:8080"
|
|
env_file:
|
|
- path: .env
|
|
required: false
|
|
environment:
|
|
- PORT=8080
|
|
volumes:
|
|
- ./data:/app/data
|