Skip to content

starze/dynv6-client

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

starze/dynv6-client

starze/dynv6-client is a client for dynv6.com

Supports x86 and arm based devices (i.e. raspberry pi).

Start container

x86

$ docker run --network=host --rm starze/dynv6-client:latest --token=<your-token> --interface=eth0 [--no-ipv4] [--no-ipv6] example.dynv6.net

arm

$ docker run --network=host --rm starze/arm32v7-dynv6-client:latest --token=<your-token> --interface=eth0 [--no-ipv4] [--no-ipv6] example.dynv6.net

Build container

x86

$ docker build -t dynv6-client .

arm

$ docker build -t arm32v7-dynv6-client -f Dockerfile.arm32v7 .

docker-compose file example

version: '2'

services:
  dynv6-client:
    image: starze/dynv6-client
    restart: unless-stopped
    container_name: dynv6-client
    network_mode: host
    command: --token=<your-dynv6-token> --interface=eth0 your-host.dynv6.net

Dockerfile and Code

https://github.com/starze/dynv6-client

Special thanks to https://github.com/ticosax/dynv6-client for making this possible!

About

Dynv6 python client

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 82.3%
  • Dockerfile 17.7%