
OpenMediaVault DuckDNS
DuckDNS is a free dynamic DNS service that allows you to map a subdomain to your server’s IP address, even if it changes dynamically. Integrating DuckDNS with OpenMediaVault (OMV) ensures secure and remote access to your OMV server. Below are the steps to set it up.
Step 1
Head over to Docker compose Ready to add the docker Compose container project.

Step 2
Select + to add the docker Compose container project

Step 3
Now you are ready to type in the compose file or copy and paste my code from below. edit it as you need.

Step 4
Now you have the code in. there is a couple more things todo. Add a Description and title. Don’t forget to save to finish off.

Step 5
After you have saved the docker compose file, you should have something like the below. Ready to Load the Project and get it working. Press on the Up Button to get the project working.

Step 6
Make a Cuppa Coffee this could take some time to pull the files needed and setup the folder for the first time. soon as you get END OF FILE thats the project complete and running

Step 7
Thats the project now running, the Green UP under status means you are successful and no errors to report.

services:
duckdns:
image: lscr.io/linuxserver/duckdns:latest
container_name: duckdns
network_mode: host #optional
environment:
- PUID=1000 #optional
- PGID=1000 #optional
- TZ=Etc/UTC #optional
- SUBDOMAINS=Domain-Name
- TOKEN=3333338647b0
- UPDATE_IP=ipv4 #optional
- LOG_FILE=false #optional
volumes:
- /Basesfolder/Docker/Data/DuckDNS:/config #optional
restart: unless-stopped