Created
April 2, 2021 16:59
-
-
Save placecodex/09ad2b40dc47dc7534bb1726e9d3b502 to your computer and use it in GitHub Desktop.
how make docker image duckdns updater
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo docker create \ | |
--name=duckdns \ | |
-e PUID=1000 \ | |
-e PGID=1000 \ | |
-e TZ=Europe/Madrid \ | |
-e SUBDOMAINS=ejemplo1,ejemplo2 \ | |
-e TOKEN=TOKEN HERE \ | |
--restart unless-stopped \ | |
linuxserver/duckdns | |
sudo docker start duckdns | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment