wiserain / docker-flexget

Docker image for running Flexget
https://hub.docker.com/r/wiserain/flexget
68 stars 40 forks source link

Executing every minute? #46

Closed dchesbro closed 2 years ago

dchesbro commented 2 years ago

I'm trying to run this image on a Raspberry Pi 4B, and appear to be running into multiple issues. First, the image runs but sends an execute command every minute:

docker run \
  -e FG_LOG_FILE=flexget.log \
  -e FG_LOG_LEVEL=info \
  -e PGID=1000 \
  -e PUID=1000 \
  -e TZ=America/Los_Angeles \
  -p 5050:5050 \
  -v ~/.docker/flexget/config:/config \
  -v ~/.docker/flexget/data:/data \
  --name=flexget \
  --restart unless-stopped \
  wiserain/flexget
[s6-init] making user provided files available at /var/run/s6/etc...exited 0.
[s6-init] ensuring user provided files have correct perms...exited 0.
[fix-attrs.d] applying ownership & permissions fixes...
[fix-attrs.d] done.
[cont-init.d] executing container initialization scripts...
[cont-init.d] 01-envfile: executing... 
[cont-init.d] 01-envfile: exited 0.
[cont-init.d] 02-tamper-check: executing... 
[cont-init.d] 02-tamper-check: exited 0.
[cont-init.d] 10-adduser: executing... 

-------------------------------------
          _         ()
         | |  ___   _    __
         | | / __| | |  /  \
         | | \__ \ | | | () |
         |_| |___/ |_|  \__/

Brought to you by linuxserver.io
-------------------------------------

To support LSIO projects visit:
https://www.linuxserver.io/donate/
-------------------------------------
GID/UID
-------------------------------------

User uid:    1000
User gid:    1000
-------------------------------------

[cont-init.d] 10-adduser: exited 0.
[cont-init.d] 20-config: executing... 
*** Using existing config.yml
*** Flexget v3.3.2 ready!
[cont-init.d] 20-config: exited 0.
[cont-init.d] 90-custom-folders: executing... 
[cont-init.d] 90-custom-folders: exited 0.
[cont-init.d] 99-custom-files: executing... 
[custom-init] no custom files found exiting...
[cont-init.d] 99-custom-files: exited 0.
[cont-init.d] done.
[services.d] starting services
[services.d] done.
[services.d] executing => flexget -c /config/config.yml --loglevel info --logfile flexget.log daemon start --autoreload-config
[services.d] executing => flexget -c /config/config.yml --loglevel info --logfile flexget.log daemon start --autoreload-config
[services.d] executing => flexget -c /config/config.yml --loglevel info --logfile flexget.log daemon start --autoreload-config
[services.d] executing => flexget -c /config/config.yml --loglevel info --logfile flexget.log daemon start --autoreload-config
[services.d] executing => flexget -c /config/config.yml --loglevel info --logfile flexget.log daemon start --autoreload-config

There doesn't seem to be any error codes, and when I try to check Flexget logs I encounter my second issue, which is no information is being written.

I don't see any signs of permission or command issues, but I'm relatively new to docker and may be missing something obvious to someone with more experience. Any help would be appreciated.