#Just getting started; no luck so far.
1 messages · Page 1 of 1 (latest)
You can press the "Close Post" button above or type /close at any time to close this post.
The following was shared by @tepid vigil and was automatically redacted by Luma as it may have contained sensitive information.
If you feel this message should not have been redacted, resend it with !noredact in your message to avoid redaction.
Hey - I'm getting started with Kometa and I've used the most basic config. Running in Docker, looking at the logs, whenever it starts, all I see is this:
/usr/local/lib/python3.13/site-packages/arrapi/init.py:1: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81.
import pkg_resources
It doesn't seem to be doing much. My Kometa config:
libraries:
TV Shows:
collection_files:
- default: basic
plex:
url: http://my.ip.add.ress:32400
token: (redacted by Luma)
tmdb:
apikey: (redacted by Luma)
Any thoughts would be great.
Additional note: I do not have a meta.log.
You probably haven't included a flag to run immediately, so it's waiting until 5 am to do anything.
What's in the docker-compose?
kometa:
image: kometateam/kometa:latest
container_name: kometa
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ={TIMEZONE}
volumes:
- /kometa/config:/config
restart: unless-stopped
Like I said, super basic.
You need to add KOMETA_RUN: true if you want it to run immediately.
That worked. Now I need to lint my yaml because I have a tab. Of course.