20 มีนาคม 2568

Mikrotik container : ZeroTier network controller user interface

No public IP address is required; an internet connection alone is sufficient.

/container mounts
add dst=/opt/key-networks/ztncui/etc name=ztncui src=/ztncui
add dst=/var/lib/zerotier-one name=zerotier-one src=/zerotier-one

/container envs
add key=NODE_ENV name=zerotier value=production
add key=HTTPS_PORT name=zerotier value=3443
add key=ZTNCUI_PASSWD name=zerotier value=password

/container
add comment=zeerotier envlist=zerotier interface=veth-zerotier logging=yes mounts=ztncui,zerotier-one start-on-boot=yes workdir=/

WARNING: IF YOU DO NOT SET PASSWORD, YOU HAVE TO USE container shell <CONTAINER ID>, and then cat /var/log/docker-ztncui.log to get your random password. This is gatekeeper.

ref
- https://gist.github.com/dnburgess/b839c2230890068c30bb5ed5ee2d22ba
- https://github.com/key-networks/ztncui-aio

05 กุมภาพันธ์ 2568

Mikrotik hex refresh cloudflared container

For devices with EN7562CT CPU, only arm32v5 container images are supported.
 
 
/disk
add slot=tmpfs tmpfs-max-size=160M type=tmpfs

/container config
set registry-url=https://registry-1.docker.io tmpdir=tmpfs

/file
add name=/opt-cf/cloudflared.sh type=file contents="/bin/apt update\n\
/bin/apt -y install wget\n\
wget https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-arm -O /tmp/cloudflared\n\
chmod +x /tmp/cloudflared\n\
/tmp/cloudflared tunnel --no-autoupdate run --token XXX"

/container mounts
add dst=/opt-cf name=opt-cf src=/opt-cf

/container
add remote-image=arm32v5/debian:bookworm-slim interface=cf-tunnel mounts=opt-cf root-dir=tmpfs logging=yes cmd="bash /opt-cf/cloudflared.sh"