esackbauer
Thanks esackbauer!
On the mailcow.conf the bind is as follows:
HTTP_PORT=8080
HTTP_BIND=127.0.0.1
HTTPS_PORT=8443
HTTPS_BIND=127.0.0.1
and
SKIP_LETS_ENCRYPT=y
The solution was to install the container in a container (/opt/npm).
Here is the content of docker/compose.yml:
version: ‘3.8’
services:
nginx-proxy-manager:
image: ‘jc21/nginx-proxy-manager:latest’
restart: unless-stopped
ports:
- ‘80:80’
- ‘443:443’
volumes:
- ‘./data:/data’
- ‘./letsencrypt:/etc/letsencrypt’
networks:
default:
external: true
name: mailcowdockerized_mailcow-network