Replies: 1 comment
-
Nevermind, I was running in docker-desktop. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have deployed a docker container with this following compose file for HE as the provider, it seems like it works but when I check it remains "unset". And I so far have to update the IP manually. Any help is much appreciated! I've helped others setup with different providers without issue. Not sure what's happening here...
docker-compose.yaml
services:
ddns-updater:
image: qmcgaw/ddns-updater
container_name: ddns-updater
network_mode: bridge
ports:
- "8080:8000"
volumes:
- ./data:/updater/data
environment:
- CONFIG={"settings":[{"provider":"he","domain":"EXAMPLE.com","password":"MYPASS","ip_version":"ipv4","ipv6_suffix":""}]}
- PERIOD=5m
- IP_METHOD=cycle
- IPV4_METHOD=cycle
- IPV6_METHOD=cycle
- HTTP_TIMEOUT=10s
- LISTENING_PORT=8000
- ROOT_URL=/
restart: always
Output from the container:
Beta Was this translation helpful? Give feedback.
All reactions