I'm running OMV6 on a Pi4. I installed docker with these instructions a while back and it works just fine:
omv6:docker_in_omv [omv-extras.org]
The above instructions specifiy the creation of 3 folders:
/SSD/appdata
/SSD/docker
/SSD/compose
which I have done.
https://nginxproxymanager.com/…hosting-your-home-network provides the following YML template (I use Docker-Compose, and not Portainer):
version: '3.8'
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
restart: unless-stopped
ports:
- '8080:80'
- '8181:81'
- '4433:443'
volumes:
- ./data:/data
- ./letsencrypt:/etc/letsencrypt
I changed the ports for now to avoid some conflicts, and I'm guessing I need to set the volumes to:
volumes:
- /SSD/appdata/nginx-proxy-manager:/data
- ./letsencrypt:/etc/letsencrypt <-- not sure what to set this to.
My main question is how to map the letsencrypt volume. Would:
/SSD/appdata/letsencrypt:/etc/letsencrypt
be OK??