[GH-ISSUE #5] Can't get container to start #4

Closed
opened 2026-05-06 12:22:34 +02:00 by BreizhHardware · 4 comments

Originally created by @himan7991 on GitHub (Mar 25, 2026).
Original GitHub issue: https://github.com/chr0nzz/traefik-manager/issues/5

Originally assigned to: @chr0nzz on GitHub.

  1. Copy docker-compose from README or docs
  2. Run docker compose up
  3. Get this error

docker compose:

traefik-manager:
  image: ghcr.io/chr0nzz/traefik-manager:latest
  container_name: traefik-manager
  restart: unless-stopped
  networks:
    - traefik_network
  ports:
    - "5000:5000"
  environment:
    - COOKIE_SECURE=true
  volumes:
    - ../configs/traefik/traefik.conf:/app/config/dynamic.yml
    - ../configs/traefik-manager/config:/app/config
    - ../configs/traefik-manager/backups:/app/backups
  labels:
    traefik.enable: true
    traefik.docker.network: traefik_network
    traefik.http.routers.traefik-manager.service: traefik-manager
    traefik.http.routers.traefik-manager.rule: Host(`traefik-manager.lan`)
    traefik.http.routers.traefik-manager.entrypoints: web
    traefik.http.routers.traefik-manager.middlewares: redirect-to-https
    traefik.http.services.traefik-manager.loadbalancer.server.port: *manager_port
    traefik.http.routers.traefik-manager-https.rule: Host(`traefik-manager.lan`)
    traefik.http.routers.traefik-manager-https.entrypoints: websecure
    traefik.http.routers.traefik-manager-https.tls: true
    traefik.http.middlewares.redirect-to-https.redirectscheme.scheme: https
    traefik.http.middlewares.redirect-to-https.redirectscheme.permanent: true

Logs:

[traefik-manager] 2026-03-25T12:44:05.496114099Z [2026-03-25 12:44:05 +0000] [1] [INFO] Starting gunicorn 25.2.0
[traefik-manager] 2026-03-25T12:44:05.496333363Z [2026-03-25 12:44:05 +0000] [1] [INFO] Listening at: http://0.0.0.0:5000 (1)
[traefik-manager] 2026-03-25T12:44:05.496342090Z [2026-03-25 12:44:05 +0000] [1] [INFO] Using worker: sync
[traefik-manager] 2026-03-25T12:44:05.498559314Z [2026-03-25 12:44:05 +0000] [7] [INFO] Booting worker with pid: 7
[traefik-manager] 2026-03-25T12:44:05.568631312Z [2026-03-25 12:44:05 +0000] [1] [INFO] Control socket listening at /root/.gunicorn/gunicorn.ctl
[traefik-manager] 2026-03-25T12:44:05.724386208Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] ===========================================
[traefik-manager] 2026-03-25T12:44:05.724419558Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Starting Traefik Manager
[traefik-manager] 2026-03-25T12:44:05.724424393Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Config Path:    /app/config/dynamic.yml
[traefik-manager] 2026-03-25T12:44:05.724439097Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Settings Path:  /app/config/manager.yml
[traefik-manager] 2026-03-25T12:44:05.724464063Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Backup Dir:     /app/backups
[traefik-manager] 2026-03-25T12:44:05.724513231Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Domains:        ['example.com']
[traefik-manager] 2026-03-25T12:44:05.724538087Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Cert Resolver:  cloudflare
[traefik-manager] 2026-03-25T12:44:05.724562490Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Traefik API:    http://traefik:8080
[traefik-manager] 2026-03-25T12:44:05.724613702Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Auth Enabled:   True
[traefik-manager] 2026-03-25T12:44:05.724643385Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] ===========================================
[traefik-manager] 2026-03-25T12:44:05.724724273Z 2026-03-25 12:44:05,724 [WARNING] [traefik-manager] ============================================================
[traefik-manager] 2026-03-25T12:44:05.724748318Z 2026-03-25 12:44:05,724 [WARNING] [traefik-manager]   TRAEFIK MANAGER — AUTO-GENERATED PASSWORD
[traefik-manager] 2026-03-25T12:44:05.724767720Z 2026-03-25 12:44:05,724 [WARNING] [traefik-manager]   Password: [random generated password]
[traefik-manager] 2026-03-25T12:44:05.724789552Z 2026-03-25 12:44:05,724 [WARNING] [traefik-manager]   Log in with this password, complete setup, then
[traefik-manager] 2026-03-25T12:44:05.724816349Z 2026-03-25 12:44:05,724 [WARNING] [traefik-manager]   you will be prompted to set a permanent password.
[traefik-manager] 2026-03-25T12:44:05.724834227Z 2026-03-25 12:44:05,724 [WARNING] [traefik-manager] ============================================================
[traefik-manager] 2026-03-25T12:44:05.727440154Z [2026-03-25 12:44:05 +0000] [7] [ERROR] Exception in worker process
[traefik-manager] 2026-03-25T12:44:05.727449333Z Traceback (most recent call last):
[traefik-manager] 2026-03-25T12:44:05.727452028Z   File "/usr/local/lib/python3.11/site-packages/gunicorn/arbiter.py", line 713, in spawn_worker
[traefik-manager] 2026-03-25T12:44:05.727454524Z     worker.init_process()
[traefik-manager] 2026-03-25T12:44:05.727456756Z   File "/usr/local/lib/python3.11/site-packages/gunicorn/workers/base.py", line 136, in init_process
[traefik-manager] 2026-03-25T12:44:05.727459104Z     self.load_wsgi()
[traefik-manager] 2026-03-25T12:44:05.727461265Z   File "/usr/local/lib/python3.11/site-packages/gunicorn/workers/base.py", line 148, in load_wsgi
[traefik-manager] 2026-03-25T12:44:05.727463686Z     self.wsgi = self.app.wsgi()
[traefik-manager] 2026-03-25T12:44:05.727470997Z                 ^^^^^^^^^^^^^^^
[traefik-manager] 2026-03-25T12:44:05.727475499Z   File "/usr/local/lib/python3.11/site-packages/gunicorn/app/base.py", line 66, in wsgi
[traefik-manager] 2026-03-25T12:44:05.727478936Z     self.callable = self.load()
[traefik-manager] 2026-03-25T12:44:05.727482071Z                     ^^^^^^^^^^^
[traefik-manager] 2026-03-25T12:44:05.727485167Z   File "/usr/local/lib/python3.11/site-packages/gunicorn/app/wsgiapp.py", line 57, in load
[traefik-manager] 2026-03-25T12:44:05.727488673Z     return self.load_wsgiapp()
[traefik-manager] 2026-03-25T12:44:05.727491828Z            ^^^^^^^^^^^^^^^^^^^
[traefik-manager] 2026-03-25T12:44:05.727494872Z   File "/usr/local/lib/python3.11/site-packages/gunicorn/app/wsgiapp.py", line 47, in load_wsgiapp
[traefik-manager] 2026-03-25T12:44:05.727502919Z     return util.import_app(self.app_uri)
[traefik-manager] 2026-03-25T12:44:05.727504826Z            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[traefik-manager] 2026-03-25T12:44:05.727506562Z   File "/usr/local/lib/python3.11/site-packages/gunicorn/util.py", line 377, in import_app
[traefik-manager] 2026-03-25T12:44:05.727508377Z     mod = importlib.import_module(module)
[traefik-manager] 2026-03-25T12:44:05.727510093Z           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[traefik-manager] 2026-03-25T12:44:05.727511801Z   File "/usr/local/lib/python3.11/importlib/__init__.py", line 126, in import_module
[traefik-manager] 2026-03-25T12:44:05.727513650Z     return _bootstrap._gcd_import(name[level:], package, level)
[traefik-manager] 2026-03-25T12:44:05.727515516Z            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[traefik-manager] 2026-03-25T12:44:05.727517276Z   File "<frozen importlib._bootstrap>", line 1204, in _gcd_import
[traefik-manager] 2026-03-25T12:44:05.727519288Z   File "<frozen importlib._bootstrap>", line 1176, in _find_and_load
[traefik-manager] 2026-03-25T12:44:05.727521088Z   File "<frozen importlib._bootstrap>", line 1147, in _find_and_load_unlocked
[traefik-manager] 2026-03-25T12:44:05.727522920Z   File "<frozen importlib._bootstrap>", line 690, in _load_unlocked
[traefik-manager] 2026-03-25T12:44:05.727524735Z   File "<frozen importlib._bootstrap_external>", line 940, in exec_module
[traefik-manager] 2026-03-25T12:44:05.727526621Z   File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
[traefik-manager] 2026-03-25T12:44:05.727528502Z   File "/app/app.py", line 291, in <module>
[traefik-manager] 2026-03-25T12:44:05.727530459Z     _ensure_password()
[traefik-manager] 2026-03-25T12:44:05.727532206Z   File "/app/app.py", line 272, in _ensure_password
[traefik-manager] 2026-03-25T12:44:05.727534024Z     password_hash=_hash_password(password),
[traefik-manager] 2026-03-25T12:44:05.727535796Z                   ^^^^^^^^^^^^^^
[traefik-manager] 2026-03-25T12:44:05.727539077Z NameError: name '_hash_password' is not defined
[traefik-manager] 2026-03-25T12:44:05.727542354Z name '_hash_password' is not defined
[traefik-manager] 2026-03-25T12:44:05.727559909Z [2026-03-25 12:44:05 +0000] [7] [INFO] Worker exiting (pid: 7)
[traefik-manager] 2026-03-25T12:44:05.810780801Z [2026-03-25 12:44:05 +0000] [1] [ERROR] Worker (pid:7) exited with code 3.
[traefik-manager] 2026-03-25T12:44:05.811798360Z [2026-03-25 12:44:05 +0000] [1] [ERROR] Shutting down: Master
[traefik-manager] 2026-03-25T12:44:05.811833337Z [2026-03-25 12:44:05 +0000] [1] [ERROR] Reason: Worker failed to boot.

Also the Traefik API: http://traefik:8080 is not correct, am I supposed to set it from the compose?

Is there something I should've done or..? Thanks

Originally created by @himan7991 on GitHub (Mar 25, 2026). Original GitHub issue: https://github.com/chr0nzz/traefik-manager/issues/5 Originally assigned to: @chr0nzz on GitHub. 1. Copy `docker-compose` from README or docs 2. Run `docker compose up` 3. Get this error docker compose: ``` traefik-manager: image: ghcr.io/chr0nzz/traefik-manager:latest container_name: traefik-manager restart: unless-stopped networks: - traefik_network ports: - "5000:5000" environment: - COOKIE_SECURE=true volumes: - ../configs/traefik/traefik.conf:/app/config/dynamic.yml - ../configs/traefik-manager/config:/app/config - ../configs/traefik-manager/backups:/app/backups labels: traefik.enable: true traefik.docker.network: traefik_network traefik.http.routers.traefik-manager.service: traefik-manager traefik.http.routers.traefik-manager.rule: Host(`traefik-manager.lan`) traefik.http.routers.traefik-manager.entrypoints: web traefik.http.routers.traefik-manager.middlewares: redirect-to-https traefik.http.services.traefik-manager.loadbalancer.server.port: *manager_port traefik.http.routers.traefik-manager-https.rule: Host(`traefik-manager.lan`) traefik.http.routers.traefik-manager-https.entrypoints: websecure traefik.http.routers.traefik-manager-https.tls: true traefik.http.middlewares.redirect-to-https.redirectscheme.scheme: https traefik.http.middlewares.redirect-to-https.redirectscheme.permanent: true ``` Logs: ``` [traefik-manager] 2026-03-25T12:44:05.496114099Z [2026-03-25 12:44:05 +0000] [1] [INFO] Starting gunicorn 25.2.0 [traefik-manager] 2026-03-25T12:44:05.496333363Z [2026-03-25 12:44:05 +0000] [1] [INFO] Listening at: http://0.0.0.0:5000 (1) [traefik-manager] 2026-03-25T12:44:05.496342090Z [2026-03-25 12:44:05 +0000] [1] [INFO] Using worker: sync [traefik-manager] 2026-03-25T12:44:05.498559314Z [2026-03-25 12:44:05 +0000] [7] [INFO] Booting worker with pid: 7 [traefik-manager] 2026-03-25T12:44:05.568631312Z [2026-03-25 12:44:05 +0000] [1] [INFO] Control socket listening at /root/.gunicorn/gunicorn.ctl [traefik-manager] 2026-03-25T12:44:05.724386208Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] =========================================== [traefik-manager] 2026-03-25T12:44:05.724419558Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Starting Traefik Manager [traefik-manager] 2026-03-25T12:44:05.724424393Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Config Path: /app/config/dynamic.yml [traefik-manager] 2026-03-25T12:44:05.724439097Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Settings Path: /app/config/manager.yml [traefik-manager] 2026-03-25T12:44:05.724464063Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Backup Dir: /app/backups [traefik-manager] 2026-03-25T12:44:05.724513231Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Domains: ['example.com'] [traefik-manager] 2026-03-25T12:44:05.724538087Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Cert Resolver: cloudflare [traefik-manager] 2026-03-25T12:44:05.724562490Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Traefik API: http://traefik:8080 [traefik-manager] 2026-03-25T12:44:05.724613702Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] Auth Enabled: True [traefik-manager] 2026-03-25T12:44:05.724643385Z 2026-03-25 12:44:05,724 [INFO] [traefik-manager] =========================================== [traefik-manager] 2026-03-25T12:44:05.724724273Z 2026-03-25 12:44:05,724 [WARNING] [traefik-manager] ============================================================ [traefik-manager] 2026-03-25T12:44:05.724748318Z 2026-03-25 12:44:05,724 [WARNING] [traefik-manager] TRAEFIK MANAGER — AUTO-GENERATED PASSWORD [traefik-manager] 2026-03-25T12:44:05.724767720Z 2026-03-25 12:44:05,724 [WARNING] [traefik-manager] Password: [random generated password] [traefik-manager] 2026-03-25T12:44:05.724789552Z 2026-03-25 12:44:05,724 [WARNING] [traefik-manager] Log in with this password, complete setup, then [traefik-manager] 2026-03-25T12:44:05.724816349Z 2026-03-25 12:44:05,724 [WARNING] [traefik-manager] you will be prompted to set a permanent password. [traefik-manager] 2026-03-25T12:44:05.724834227Z 2026-03-25 12:44:05,724 [WARNING] [traefik-manager] ============================================================ [traefik-manager] 2026-03-25T12:44:05.727440154Z [2026-03-25 12:44:05 +0000] [7] [ERROR] Exception in worker process [traefik-manager] 2026-03-25T12:44:05.727449333Z Traceback (most recent call last): [traefik-manager] 2026-03-25T12:44:05.727452028Z File "/usr/local/lib/python3.11/site-packages/gunicorn/arbiter.py", line 713, in spawn_worker [traefik-manager] 2026-03-25T12:44:05.727454524Z worker.init_process() [traefik-manager] 2026-03-25T12:44:05.727456756Z File "/usr/local/lib/python3.11/site-packages/gunicorn/workers/base.py", line 136, in init_process [traefik-manager] 2026-03-25T12:44:05.727459104Z self.load_wsgi() [traefik-manager] 2026-03-25T12:44:05.727461265Z File "/usr/local/lib/python3.11/site-packages/gunicorn/workers/base.py", line 148, in load_wsgi [traefik-manager] 2026-03-25T12:44:05.727463686Z self.wsgi = self.app.wsgi() [traefik-manager] 2026-03-25T12:44:05.727470997Z ^^^^^^^^^^^^^^^ [traefik-manager] 2026-03-25T12:44:05.727475499Z File "/usr/local/lib/python3.11/site-packages/gunicorn/app/base.py", line 66, in wsgi [traefik-manager] 2026-03-25T12:44:05.727478936Z self.callable = self.load() [traefik-manager] 2026-03-25T12:44:05.727482071Z ^^^^^^^^^^^ [traefik-manager] 2026-03-25T12:44:05.727485167Z File "/usr/local/lib/python3.11/site-packages/gunicorn/app/wsgiapp.py", line 57, in load [traefik-manager] 2026-03-25T12:44:05.727488673Z return self.load_wsgiapp() [traefik-manager] 2026-03-25T12:44:05.727491828Z ^^^^^^^^^^^^^^^^^^^ [traefik-manager] 2026-03-25T12:44:05.727494872Z File "/usr/local/lib/python3.11/site-packages/gunicorn/app/wsgiapp.py", line 47, in load_wsgiapp [traefik-manager] 2026-03-25T12:44:05.727502919Z return util.import_app(self.app_uri) [traefik-manager] 2026-03-25T12:44:05.727504826Z ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [traefik-manager] 2026-03-25T12:44:05.727506562Z File "/usr/local/lib/python3.11/site-packages/gunicorn/util.py", line 377, in import_app [traefik-manager] 2026-03-25T12:44:05.727508377Z mod = importlib.import_module(module) [traefik-manager] 2026-03-25T12:44:05.727510093Z ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [traefik-manager] 2026-03-25T12:44:05.727511801Z File "/usr/local/lib/python3.11/importlib/__init__.py", line 126, in import_module [traefik-manager] 2026-03-25T12:44:05.727513650Z return _bootstrap._gcd_import(name[level:], package, level) [traefik-manager] 2026-03-25T12:44:05.727515516Z ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [traefik-manager] 2026-03-25T12:44:05.727517276Z File "<frozen importlib._bootstrap>", line 1204, in _gcd_import [traefik-manager] 2026-03-25T12:44:05.727519288Z File "<frozen importlib._bootstrap>", line 1176, in _find_and_load [traefik-manager] 2026-03-25T12:44:05.727521088Z File "<frozen importlib._bootstrap>", line 1147, in _find_and_load_unlocked [traefik-manager] 2026-03-25T12:44:05.727522920Z File "<frozen importlib._bootstrap>", line 690, in _load_unlocked [traefik-manager] 2026-03-25T12:44:05.727524735Z File "<frozen importlib._bootstrap_external>", line 940, in exec_module [traefik-manager] 2026-03-25T12:44:05.727526621Z File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed [traefik-manager] 2026-03-25T12:44:05.727528502Z File "/app/app.py", line 291, in <module> [traefik-manager] 2026-03-25T12:44:05.727530459Z _ensure_password() [traefik-manager] 2026-03-25T12:44:05.727532206Z File "/app/app.py", line 272, in _ensure_password [traefik-manager] 2026-03-25T12:44:05.727534024Z password_hash=_hash_password(password), [traefik-manager] 2026-03-25T12:44:05.727535796Z ^^^^^^^^^^^^^^ [traefik-manager] 2026-03-25T12:44:05.727539077Z NameError: name '_hash_password' is not defined [traefik-manager] 2026-03-25T12:44:05.727542354Z name '_hash_password' is not defined [traefik-manager] 2026-03-25T12:44:05.727559909Z [2026-03-25 12:44:05 +0000] [7] [INFO] Worker exiting (pid: 7) [traefik-manager] 2026-03-25T12:44:05.810780801Z [2026-03-25 12:44:05 +0000] [1] [ERROR] Worker (pid:7) exited with code 3. [traefik-manager] 2026-03-25T12:44:05.811798360Z [2026-03-25 12:44:05 +0000] [1] [ERROR] Shutting down: Master [traefik-manager] 2026-03-25T12:44:05.811833337Z [2026-03-25 12:44:05 +0000] [1] [ERROR] Reason: Worker failed to boot. ``` Also the `Traefik API: http://traefik:8080` is not correct, am I supposed to set it from the compose? Is there something I should've done or..? Thanks
BreizhHardware 2026-05-06 12:22:34 +02:00
  • closed this issue
  • added the
    bug
    label
Author
Owner

@chr0nzz commented on GitHub (Mar 25, 2026):

Hi! There are actually a couple of things going on here.

Startup crash (NameError) this is a bug in the app, not your config. On a fresh install where no password has been set yet, _ensure_password() was calling a helper function that wasn't defined yet at load time. This is fixed in the latest code please pull latest again once a new image is pushed.

Two things to also fix in your compose:

You're mounting traefik.conf as the dynamic config (../configs/traefik/traefik.conf:/app/config/dynamic.yml). Traefik Manager reads and writes this file as YAML. If your .conf file is TOML or any other format, the app will fail to parse it. Rename it to .yml and make sure it's valid dynamic YAML, or create a new empty dynamic.yml and point at that.
Make sure you mount the Dynamic file and not the Static file.

The traefik API address is not needed for compose file. You set that during the setup process, or you can use env var if you want.

Let me know if you hit any other issues!

<!-- gh-comment-id:4126659315 --> @chr0nzz commented on GitHub (Mar 25, 2026): Hi! There are actually a couple of things going on here. Startup crash (NameError) this is a bug in the app, not your config. On a fresh install where no password has been set yet, _ensure_password() was calling a helper function that wasn't defined yet at load time. This is fixed in the latest code please pull latest again once a new image is pushed. Two things to also fix in your compose: You're mounting traefik.conf as the dynamic config (../configs/traefik/traefik.conf:/app/config/dynamic.yml). Traefik Manager reads and writes this file as YAML. If your .conf file is TOML or any other format, the app will fail to parse it. Rename it to .yml and make sure it's valid dynamic YAML, or create a new empty dynamic.yml and point at that. Make sure you mount the Dynamic file and not the Static file. The traefik API address is not needed for compose file. You set that during the setup process, or you can use [env](https://traefik-manager.xyzlab.dev/env-vars/#traefik_api_url) var if you want. Let me know if you hit any other issues!
Author
Owner

@himan7991 commented on GitHub (Mar 25, 2026):

You're mounting traefik.conf as the dynamic config (../configs/traefik/traefik.conf:/app/config/dynamic.yml). Traefik Manager reads and writes this file as YAML. If your .conf file is TOML or any other format, the app will fail to parse it.

traefik.conf was actually a yml file, but I had them mixed up, and it was actually the static config. I just liked the .conf name, but I have seen it's not a very standard practice, so I changed to static.yml, created a new dynamic.yml, and I will be passing it to the container as you say

I'll be waiting for the new version to try it out. Thanks!

<!-- gh-comment-id:4126699566 --> @himan7991 commented on GitHub (Mar 25, 2026): >You're mounting traefik.conf as the dynamic config (../configs/traefik/traefik.conf:/app/config/dynamic.yml). Traefik Manager reads and writes this file as YAML. If your .conf file is TOML or any other format, the app will fail to parse it. `traefik.conf` was actually a yml file, but I had them mixed up, and it was actually the static config. I just liked the .conf name, but I have seen it's not a very standard practice, so I changed to `static.yml`, created a new `dynamic.yml`, and I will be passing it to the container as you say I'll be waiting for the new version to try it out. Thanks!
Author
Owner

@chr0nzz commented on GitHub (Mar 25, 2026):

the update is out, if you updated the compose with the correct mounts
run
docker compose pull && docker compose up -d
and let me know if you come across any more issues

<!-- gh-comment-id:4128044947 --> @chr0nzz commented on GitHub (Mar 25, 2026): the update is out, if you updated the compose with the correct mounts run `docker compose pull && docker compose up -d` and let me know if you come across any more issues
Author
Owner

@himan7991 commented on GitHub (Mar 25, 2026):

Awesome. It seems to be working now! Thank you

<!-- gh-comment-id:4129454404 --> @himan7991 commented on GitHub (Mar 25, 2026): Awesome. It seems to be working now! Thank you
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/traefik-manager#4
No description provided.