I recently noticed that during startup, the swag log shows:
[mod-init] Adding linuxserver/mods:swag-maxmind to container
[mod-init] (ERROR) Couldn't fetch auth token from lscr.io, switching to offline mode for linuxserver/mods:swag-maxmind
[mod-init] (ERROR) OFFLINE: linuxserver/mods:swag-maxmind not found in modcache, skipping
[mod-init] Adding linuxserver/mods:swag-dashboard to container
[mod-init] (ERROR) Couldn't fetch auth token from lscr.io, switching to offline mode for linuxserver/mods:swag-dashboard
[mod-init] (ERROR) OFFLINE: linuxserver/mods:swag-dashboard not found in modcache, skipping
However, I have no clue where this is coming from - someone?
The SWAG-container is started via the Docker-CLI:
docker run -d \
--network bridge \
--name swag \
--hostname swag \
--cap-add NET_ADMIN \
-e TZ=Europe/Amsterdam \
-e URL=itv360.net \
-e PUID=1100 \
-e PGID=1100 \
-e VALIDATION=dns \
-e SUBDOMAINS=wildcard \
-e DNSPLUGIN=cloudflare \
-e PROPAGATION=60 \
-e EMAIL=support@itv360.net \
-e ONLY_SUBDOMAINS=false \
-e EXTRA_DOMAINS=it-visibility.net,*.it-visibility.net \
-e STAGING=false \
-e MAXMINDDB_LICENSE_KEY=<license-key> \
-e MAXMINDDB_USER_ID=support@itv360.net \
-e DOCKER_MODS="linuxserver/mods:swag-maxmind|linuxserver/mods:swag-dashboard" \
-p 192.168.139.235:443:443 \
-p 192.168.139.235:80:80 \
-p 192.168.139.235:99:99 \
-v /opt/docker/swag/config:/config \
--restart unless-stopped \
linuxserver/swag
What am I overlooking here?