DuckDNS
Ref: DuckDNS.org
DuckDNS is a free dynamic DNS service that allows you to keep your domain name pointed to your dynamic IP address. It is a simple and effective solution for users who want to access their home network or self-hosted services from anywhere in the world without worrying about IP address changes.
Portainer Stack
services:
duckdns:
image: lscr.io/linuxserver/duckdns:latest
container_name: duckdns
network_mode: host
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- SUBDOMAINS=${DUCKDNS_DOMAIN}
- TOKEN=${DUCKDNS_TOKEN}
- UPDATE_IP=ipv4
- LOG_FILE=false
volumes:
- /root/duckdns/config:/config
DUCKDNS_DOMAIN="subdomain1,subdomain2"
DUCKDNS_TOKEN=your_duckdns_token