mirror of
https://github.com/zyclonite/zerotier-docker.git
synced 2024-12-14 02:11:26 +01:00
16 lines
299 B
Docker
16 lines
299 B
Docker
FROM zyclonite/zerotier:latest
|
|
|
|
RUN apk add --no-cache --purge --clean-protected --update supervisor iptables \
|
|
&& mkdir -p /var/log/supervisor \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
ENV LOG_PATH=/var/log/supervisor
|
|
|
|
COPY conf scripts /opt
|
|
|
|
EXPOSE 9993/udp
|
|
|
|
ENTRYPOINT ["/opt/entrypoint.sh"]
|
|
|
|
CMD ["-U"]
|