AdGuard Home Docker & TLS certificates
from kokesh@lemmy.world to selfhosted@lemmy.world on 06 Oct 18:07
https://lemmy.world/post/20571266

Is it possible to somehow mount a folder to Adguard running in Docker? I have auto renewed Letsencrypt certificates, but have to copy/paste them into AdGuard. Trying to add a direct path to files doesn’t work. Could it be just permissions?

#selfhosted

threaded - newest

schizo@forum.uncomfortable.business on 06 Oct 18:15 next collapse

Sure, you can just add a bind mount volume to mount a path from the host system to the container.

The only thing you’d have to make sure of is that whatever uid/gid the container is running as has permissions to access whatever cert files you’re after (but if you’re being bad and running as root, then congrats, that’s not usually an issue!)

Edit: redacted docker-compose example of this:

  service-name:
    image: image-tag
    restart: unless-stopped
    container_name: service-name
    hostname: service-name
    command: '--cert /data/live/domain.com/cert.pem --key /data/live/domain.com/privkey.pem port ip:23'
    ports:
      - port-external:port-internal
    volumes:
      - /etc/letsencrypt:/data:ro

N0x0n@lemmy.ml on 09 Oct 04:58 collapse

Trying to add a direct path to files doesn’t work.

Dunno what’s wrong here, but I do add a files direct path to /etc/ssl into a docker container and works as expected.

I think It’s related to miniflux and have my self-signed certificate in its truststore to communicate with wallabag (inter-docker communication).

I can’t give you a snipped of my compose but will gladly edited my comment when home.