migrate to compose-projects folder and init repo

This commit is contained in:
2025-08-13 22:47:11 -03:00
commit a08c8cc7fa
33 changed files with 1873 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# 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:
- ./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://...'