mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-07 16:41:55 +00:00
16 lines
277 B
Bash
16 lines
277 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin
|
||
|
|
||
|
if [ ! -e /dev/net/tun ]; then
|
||
|
echo 'FATAL: cannot start ZeroTier One in container: /dev/net/tun not present.'
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
exec "$@"
|
||
|
|
||
|
|
||
|
if ! [[ -z "${NETWORK_ID}" ]]; then
|
||
|
zerotier-cli join ${NETWORK_ID}
|
||
|
fi
|