References https://easytier.cn/guide/installation.html Prepare Third-party public server monitoringhttps://ruixuan.online/uptime/easytier Official server monitoringhttps://easytier.gd.nkbpal.cn/status/easytier Deploy in/dockerCreate a folder undereasytier bash 1 mkdir easytier Go to this folder and createdocker-composeThe content is as follows yaml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 services: # watchtower is used to automatically update the EasyTier image. You can delete this section if it is not needed. watchtower: image: nickfedor/watchtower container_name: watchtower restart: unless-stopped environment: - TZ=Asia/Shanghai - WATCHTOWER_NO_STARTUP_MESSAGE volumes: - /var/run/docker.sock:/var/run/docker.sock command: --interval 3600 --cleanup --label-enable easytier: # Domestic users can use daocloud.io mirror # image: m.daocloud.io/docker.io/easytier/easytier:latest image: easytier/easytier:latest hostname: easytier container_name: easytier labels: com.centurylinklabs.watchtower.enable: 'true' restart: unless-stopped network_mode: host cap_add: - NET_ADMIN - NET_RAW environment: - TZ=Asia/Shanghai devices: - /dev/net/tun:/dev/net/tun volumes: - /etc/machine-id:/etc/machine-id:ro - ./conf:/config command: > -c /config/easytier.toml in/docker/easytierCreate a folder underconf ...