mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-11-21 13:00:26 -08:00
fac212fafa
* update entrypoint.sh - propagate TERM/QUIT/INT signals - add some basic logging - check for unbound variables - update "route helper" - run as subshell, exit if zerotier-one is unavailable so pod can be restarted - only call `zerotier-cli` once, avoids race conditions - only add default routes if allowDefault is enabled for that network - add some more error handling - sleep after all networks are processed * switch to polling ZT service at startup Co-authored-by: Daniel Quinlan <dq@chaosengine.net>
31 lines
845 B
Docker
31 lines
845 B
Docker
# vim: ft=dockerfile
|
|
|
|
FROM alpine:latest as builder
|
|
|
|
WORKDIR /src
|
|
RUN apk add --no-cache rust cargo \
|
|
&& apk add openssl-dev \
|
|
&& apk add --update alpine-sdk linux-headers \
|
|
&& git clone --quiet https://github.com/zerotier/ZeroTierOne.git /src \
|
|
&& git reset --quiet --hard ${ZTO_COMMIT} \
|
|
&& make -f make-linux.mk
|
|
|
|
FROM alpine:latest
|
|
LABEL version=${ZTO_VER}
|
|
LABEL description="ZeroTier One docker image for Synology NAS"
|
|
|
|
RUN apk add --update --no-cache bash jq libc6-compat libstdc++
|
|
|
|
EXPOSE 9993/udp
|
|
ENV MAX_WAIT_SECS SLEEP_TIME
|
|
|
|
COPY --from=builder /src/zerotier-one /usr/sbin/
|
|
RUN mkdir -p /var/lib/zerotier-one \
|
|
&& ln -s /usr/sbin/zerotier-one /usr/sbin/zerotier-idtool \
|
|
&& ln -s /usr/sbin/zerotier-one /usr/sbin/zerotier-cli
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod 755 /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|