This Docker image updates ieServer.Net DDNS registration.
Run with environment variables USERNAME
, DOMAIN
, PASSWORD
, and update schadule as CRON_SCHEDULE
witten cron format (see "man 5 crontab" in your terminal).
Update domain host.domain.jp
each 5 min.
Edit docker-compose.yml
version: '2'
services:
ieserver-updater:
restart: always
image: tac0x2a/ieserver-updater
container_name: ieserver-updater
volumes:
- ./volume:/work/volume
environment:
USERNAME: host
DOMAIN: domain.jp
PASSWORD: <password>
CRON_SCHEDULE: "*/5 * * * *"
And up.
$ docker-compose up -d
$ docker run -d -v /your/host/dir:/work/volume -e USERNAME=host -e DOMAIN=domain.jp -e PASSWORD=<Password> -e CRON_SCHEDULE="*/5 * * * *" tac0x2a/docker-ieserver-updater
- Fork it ( https://github.com/tac0x2a/docker-ieserver-update/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request