Open Niek opened 1 year ago
Yes, master
is the development version and it means is "latest" one.
It seems the labels defined are wrong because it is getting -DOMAIN-
instead of the proper domain name to get the certificate.
Could you share your docker-compose file?
The actual domain was there, I just censored it in the message.
OK. I apologize for that. :) So, may I have your docker-compose with censored parts?
Sure! It looks like this:
version: "3"
services:
echo:
image: ealen/echo-server:latest
pull_policy: always
restart: always
labels:
- easyhaproxy.echo.host=domain.org
- easyhaproxy.echo.port=80
- easyhaproxy.echo.localport=80
- easyhaproxy.echo.certbot=true
easyhaproxy:
image: byjg/easy-haproxy:master
pull_policy: always
restart: always
ports:
- 80:80
- 443:443
environment:
- EASYHAPROXY_CERTBOT_EMAIL=mail@domain.org
- EASYHAPROXY_DISCOVER=docker
volumes:
- /var/run/docker.sock:/var/run/docker.sock
It is a pretty standard configuration, so nothing from this side. I can try to reproduce this error later today.
Meanwhile, please verify:
domain.org
(redacted) needs to have the proper IP setup to the server
Trying to enable certbot, but I get this error (on LetsEncrypt, but ZeroSSL has the same issue):
(domain redacted to -DOMAIN-)
This is when running
:master
,:latest
does not seem to spawn port 443 at all.