-
I noticed the status of my docker container for FGC switched from I'm running fgc using docker compose, and it seemed to work on startup as I was able to enter captchas and follow along watching it attempt to claim games. Is this normal/expected behaviour since the scripts aren't running at the moment, or is there an error/issue on my end? LOGS (from
It then continues repeating the last line about resolution over and over. My compose: services:
free-games-claimer:
container_name: fgc
image: ghcr.io/vogler/free-games-claimer
environment:
- TZ=America/Toronto
env_file:
- /opt/appdata/fgc/.secrets.env
ports:
- 6080:6080
volumes:
- /opt/appdata/fgc:/fgc/data
restart: unless-stopped
Any thoughts/clarification would be appreciated, thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Your (Not sure though why it should only repeat the line with resolution instead of all output.) |
Beta Was this translation helpful? Give feedback.
Your
restart: unless-stopped
makes it run in a loop.There's no server-mode (yet), so you have to schedule runs externally.
(Not sure though why it should only repeat the line with resolution instead of all output.)