Files
Christoph Califice 4bf9984354
Some checks failed
Deploy Stacks / Redeploy_services_stacks (push) Has been cancelled
move more to docker-data
2025-12-14 16:07:05 -03:00

17 lines
641 B
YAML

# start with `docker compose up`
services:
free-games-claimer:
container_name: fgc # is printed in front of every output line
image: ghcr.io/vogler/free-games-claimer # otherwise image name will be free-games-claimer-free-games-claimer
build: .
ports:
# - "5900:5900" # VNC server
- "6080:6080" # noVNC (browser-based VNC client)
volumes:
- /home/ccalifice/docker-data/free-games-claimer/fgc:/fgc/data
restart: unless-stopped
command: bash -c "node epic-games; node gog; node prime-gaming; echo sleeping; sleep 12h"
# environment:
# - EMAIL=foo@bar.org
# - NOTIFY='tgram://...'