7cc5bddf73
Build & Deploy / build-and-deploy (push) Successful in 14s
- Add .env.example with Twitch credential instructions - Update docker-compose.yml to use env_file instead of inline comments - Add IGDB Metadata section to README with setup walkthrough - Add .env / .env.local to .gitignore to prevent secret leaks
14 lines
236 B
YAML
14 lines
236 B
YAML
services:
|
|
dostalgia:
|
|
build: .
|
|
container_name: dostalgia
|
|
ports:
|
|
- "8765:8765"
|
|
volumes:
|
|
- ./data:/data
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- DOSTALGIA_DATA_DIR=/data
|
|
restart: unless-stopped
|