[GH-ISSUE #19] Read acme.json stored in a docker volume. #18

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

Originally created by @glerroo on GitHub (Apr 11, 2026).
Original GitHub issue: https://github.com/chr0nzz/traefik-manager/issues/19

Originally assigned to: @chr0nzz on GitHub.

Great project, thanks.

There is a way to read the acme.json stored in a docker volume?

Traefik is configured as such

docker-compose.yml

services:
  traefik:
    container_name: "traefik"
    image: "traefik:v3.6"
    ...
    volumes:
      ...
      - traefik_acme:/acme_data/
    ...

volumes:
  traefik_acme:

traefik.yml

certificatesResolvers:
  test:
    acme:
      email: test@test.test
      storage: /acme_data/acme.json

Thanks.

Originally created by @glerroo on GitHub (Apr 11, 2026). Original GitHub issue: https://github.com/chr0nzz/traefik-manager/issues/19 Originally assigned to: @chr0nzz on GitHub. Great project, thanks. There is a way to read the acme.json stored in a docker volume? Traefik is configured as such docker-compose.yml ```yaml services: traefik: container_name: "traefik" image: "traefik:v3.6" ... volumes: ... - traefik_acme:/acme_data/ ... volumes: traefik_acme: ``` traefik.yml ```yaml certificatesResolvers: test: acme: email: test@test.test storage: /acme_data/acme.json ``` Thanks.
BreizhHardware 2026-05-06 12:22:42 +02:00
Author
Owner

@chr0nzz commented on GitHub (Apr 11, 2026):

This is fixed in v0.11.0, will be out later today.

Based on your setup, add the traefik_acme volume to your Traefik Manager service in docker-compose.yml, then set the path in Settings with no further restarts needed:

services:
  traefik:
    volumes:
      - traefik_acme:/acme_data/

  traefik-manager:
    volumes:
      - traefik_acme:/acme_data:ro  # same named volume, read-only

volumes:
  traefik_acme:

Then go to Settings → File Paths → acme.json Path and set /acme_data/acme.json. The Certificates tab will pick it up immediately - no restart needed after that.

<!-- gh-comment-id:4229548271 --> @chr0nzz commented on GitHub (Apr 11, 2026): This is fixed in v0.11.0, will be out later today. Based on your setup, add the traefik_acme volume to your Traefik Manager service in docker-compose.yml, then set the path in Settings with no further restarts needed: ```yaml services: traefik: volumes: - traefik_acme:/acme_data/ traefik-manager: volumes: - traefik_acme:/acme_data:ro # same named volume, read-only volumes: traefik_acme: ``` Then go to Settings → File Paths → acme.json Path and set /acme_data/acme.json. The Certificates tab will pick it up immediately - no restart needed after that.
Author
Owner

@chr0nzz commented on GitHub (Apr 11, 2026):

update out please check and let me know if u have any other issues

<!-- gh-comment-id:4229909410 --> @chr0nzz commented on GitHub (Apr 11, 2026): update out please check and let me know if u have any other issues
Author
Owner

@glerroo commented on GitHub (Apr 12, 2026):

Issue fixed up.
Thanks so much!!!

<!-- gh-comment-id:4231299818 --> @glerroo commented on GitHub (Apr 12, 2026): Issue fixed up. Thanks so much!!!
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#18
No description provided.