Dockernized ZeroTierOne controller with zero-ui web interface.
10K+
Dockernized ZeroTierOne controller with zero-ui web interface.
Modify patch/planets.json as you needed, then build the docker image.
{ "planets": [ { "Location": "Beijing", // Where this planet located "Identity": "a4de2130c2:0:ab5257bb05cd2fb8044fe26483f6d27b57124ca7b350fb3e0f07d405c68c4416094dbc836bf62ed483072501aa3384dff3c74ac50050c1bfbb1dc657001ef6a1", // The planet's public key "Endpoints": ["127.0.0.1/9993"] // The list of endpoints in 'ip/port' format. IPv6 is supportted } ] } docker build --force-rm . -t sbilly/zerotier-controller:latest # Run with default settings docker run --rm -ti -p 4000:4000 -p 9993:9993 -p 9993:9993/udp sbilly/zerotier-controller:latest # Run with custom envirments settings docker run --rm -ti -e ZU_SECURE_HEADERS=false -e ZU_CONTROLLER_ENDPOINT=http://127.0.0.1:9993/ -e ZU_DEFAULT_USERNAME=admin -e ZU_DEFAULT_PASSWORD=zero-ui -p 4000:4000 -p 3000:3000 -p 9993:9993 -p 9993:9993/udp sbilly/zerotier-controller:latest # Run with docker volumes docker run --rm -ti -v `pwd`/config/identity.public:/app/config/identity.public -v `pwd`/config/identity.secret:/app/config/identity.secret -v `pwd`/config/authtoken.secret:/app/config/authtoken.secret -p 3000:3000 -p 4000:4000 -p 9993:9993 -p 9993:9993/udp sbilly/zerotier-controller:latest admin/zero-ui) is defined by ZU_DEFAULT_USERNAME and ZU_DEFAULT_PASSWORD.ZT_PRIMARY_PORT is ZeroTierOne's primaryPort in local.conf./app/ ├── config/ ├── backend/ ├── frontend/ └── ZeroTierOne/ config: The configurations of ZeroTierOne, such as identity.*, authtoken.secret, etc.backend: zero-ui backend.frontend: The static files of zero-ui frontend.ZeroTierOne: The binaries of ZeroTierOne, such as zerotier-*, mkworld.Content type
Image
Digest
Size
336.4 MB
Last updated
almost 4 years ago
Requires Docker Desktop 4.37.1 or later.