You mean that the ports I specified in the docker-compose.yml
are not correctly mapped ?
your output of the docker inspect command of the running front end container says that its 443 is not mapped to the host 8443
on one of my running containers this inspect shows
"Ports": {
"22/tcp": [
{
"HostIp": "0.0.0.0",
"HostPort": "224"
}
],
"443/tcp": [
{
"HostIp": "0.0.0.0",
"HostPort": "4435"
}
],
"80/tcp": [
{
"HostIp": "0.0.0.0",
"HostPort": "8097"
}
]
}
the first in each is the container port
and the docker inspect of the image shows
"ExposedPorts": {
"22/tcp": {},
"443/tcp": {},
"80/tcp": {}
},
I edited my docker-compose.yml
file and now I have :
"Ports": {
"443/tcp": [
{
"HostIp": "0.0.0.0",
"HostPort": "8443"
}
]
},
ps : sorry for the delay, I had to wait 2 hours for Discourse to let me post again
not in compose file… that is the output of docker inspect dontainer_id (of the running container)
in the docker compose it should be
Ports:
- 8443:443
if so, then your https://localhost:8443 should work
Yes sorry, I formulated it badly, this is indeed the output of the running container. But this doesn’t change a thing
Hi,
ERROR => Loading of SSL library failed NO SSL available
As I said, please verify that all steps in the links I provided to you are completed.
This error also tells you that the SSL configuration is not properly done. FaceTime
Regards,
Luca