Hey
I could resolve the issue generating the cert manually and then paste in /data/certbot/conf/live/.
This post in github explain it.
linkBut if you need the code I used, i used this docker-compose.yml file
version: '3.1'
services:
letsencrypt:
image: linuxserver/letsencrypt
container_name: letsencrypt
cap_add:
- NET_ADMIN
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
- URL=
yourdomain.com - SUBDOMAINS=
- VALIDATION=http
- EMAIL=
your...@example.com volumes:
- ./config:/config
ports:
- 80:80
- 443:443
restart: unless-stopped
replace the EMAIL and URL with your email and URL, also the cert will be generate in the folder /config/ that is mapped with the volume in docker.