LOG_LEVELS issue in latest docker image #227

Closed
opened 2026-02-15 19:17:08 -05:00 by yindo · 2 comments
Owner

Originally created by @vertoforce on GitHub (Apr 12, 2025).

The latest version of docker image seems to have the following error

...
pipelines  |   File "/app/main.py", line 44, in <module>
pipelines  |     logging.basicConfig(level=LOG_LEVELS[log_level])
pipelines  |                               ^^^^^^^^^^
pipelines  | NameError: name 'LOG_LEVELS' is not defined

Docker compose:

  pipelines:
    image: ghcr.io/open-webui/pipelines:main
    container_name: pipelines
    ports:
      - "9099:9099"
    volumes:
      - ./pipelines:/app/pipelines
    restart: always

Reverting to git-cf57fd0 seems to be a workaround for now.

Originally created by @vertoforce on GitHub (Apr 12, 2025). The latest version of docker image seems to have the following error ``` ... pipelines | File "/app/main.py", line 44, in <module> pipelines | logging.basicConfig(level=LOG_LEVELS[log_level]) pipelines | ^^^^^^^^^^ pipelines | NameError: name 'LOG_LEVELS' is not defined ``` Docker compose: ```yml pipelines: image: ghcr.io/open-webui/pipelines:main container_name: pipelines ports: - "9099:9099" volumes: - ./pipelines:/app/pipelines restart: always ``` Reverting to `git-cf57fd0` seems to be a workaround for now.
yindo closed this issue 2026-02-15 19:17:08 -05:00
Author
Owner

@tjbck commented on GitHub (Apr 12, 2025):

Should be fixed!

@tjbck commented on GitHub (Apr 12, 2025): Should be fixed!
Author
Owner

@vertoforce commented on GitHub (Apr 12, 2025):

Pro level turnaround, thanks mate

@vertoforce commented on GitHub (Apr 12, 2025): Pro level turnaround, thanks mate
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: open-webui/pipelines#227