mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-13 16:40:01 +00:00
9c5b46daf0
Updated docker-compose example file environment variable names due to incompatibility
15 lines
445 B
YAML
15 lines
445 B
YAML
version: "3"
|
|
services:
|
|
gameyfin:
|
|
image: grimsi/gameyfin:latest
|
|
container_name: gameyfin
|
|
environment:
|
|
- GAMEYFIN_USER=<your username here>
|
|
- GAMEYFIN_PASSWORD=<your password here>
|
|
- GAMEYFIN_IGDB_API_CLIENT_ID=<your twitch client-id here>
|
|
- GAMEYFIN_IGDB_API_CLIENT_SECRET=<your twitch client-secret here>
|
|
volumes:
|
|
- <path to your game library>:/opt/gameyfin-library
|
|
ports:
|
|
- "8080:8080"
|