mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-31 08:25:38 +00:00
Update Dockerfile
Update Dockerfile to use Debian 10 + pull the main.sh directly from Github; works for Portainer use.
This commit is contained in:
parent
ac0082a67e
commit
daa8839005
@ -1,30 +1,32 @@
|
|||||||
FROM debian:stretch as builder
|
## NOTE: to retain configuration; mount a Docker volume, or use a bind-mount, on /var/lib/zerotier-one
|
||||||
|
|
||||||
|
FROM debian:buster-slim as builder
|
||||||
|
|
||||||
## Supports x86_64, x86, arm, and arm64
|
## Supports x86_64, x86, arm, and arm64
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y curl gnupg
|
RUN apt-get update && apt-get install -y curl gnupg
|
||||||
RUN apt-key adv --keyserver ha.pool.sks-keyservers.net --recv-keys 0x1657198823e52a61 && \
|
RUN apt-key adv --keyserver ha.pool.sks-keyservers.net --recv-keys 0x1657198823e52a61 && \
|
||||||
echo "deb http://download.zerotier.com/debian/stretch stretch main" > /etc/apt/sources.list.d/zerotier.list
|
echo "deb http://download.zerotier.com/debian/buster buster main" > /etc/apt/sources.list.d/zerotier.list
|
||||||
RUN apt-get update && apt-get install -y zerotier-one=1.2.12
|
RUN apt-get update && apt-get install -y zerotier-one=1.2.12
|
||||||
|
RUN curl https://raw.githubusercontent.com/zerotier/ZeroTierOne/master/ext/installfiles/linux/zerotier-containerized/main.sh > /var/lib/zerotier-one/main.sh
|
||||||
|
|
||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
MAINTAINER Adam Ierymenko <adam.ierymenko@zerotier.com>
|
|
||||||
|
|
||||||
LABEL version="1.2.12"
|
LABEL version="1.2.12"
|
||||||
LABEL description="Containerized ZeroTier One for use on CoreOS or other Docker-only Linux hosts."
|
LABEL description="Containerized ZeroTier One for use on CoreOS or other Docker-only Linux hosts."
|
||||||
|
|
||||||
# Uncomment to build in container
|
# Uncomment to build in container
|
||||||
#RUN apk add --update alpine-sdk linux-headers
|
# RUN apk add --update alpine-sdk linux-headers
|
||||||
|
|
||||||
RUN apk add --update libgcc libstdc++
|
RUN apk add --update libgcc libstdc++
|
||||||
|
|
||||||
|
# ZeroTier relies on UDP port 9993
|
||||||
|
EXPOSE 9993/udp
|
||||||
|
|
||||||
RUN mkdir -p /var/lib/zerotier-one
|
RUN mkdir -p /var/lib/zerotier-one
|
||||||
|
COPY --from=builder /usr/sbin/zerotier-cli /usr/sbin/zerotier-cli
|
||||||
COPY --from=builder /var/lib/zerotier-one/zerotier-cli /usr/sbin/zerotier-cli
|
COPY --from=builder /usr/sbin/zerotier-idtool /usr/sbin/zerotier-idtool
|
||||||
COPY --from=builder /var/lib/zerotier-one/zerotier-idtool /usr/sbin/zerotier-idtool
|
|
||||||
COPY --from=builder /usr/sbin/zerotier-one /usr/sbin/zerotier-one
|
COPY --from=builder /usr/sbin/zerotier-one /usr/sbin/zerotier-one
|
||||||
|
COPY --from=builder /var/lib/zerotier-one/main.sh /main.sh
|
||||||
|
|
||||||
ADD main.sh /
|
|
||||||
RUN chmod 0755 /main.sh
|
RUN chmod 0755 /main.sh
|
||||||
ENTRYPOINT ["/main.sh"]
|
ENTRYPOINT ["/main.sh"]
|
||||||
CMD ["zerotier-one"]
|
CMD ["zerotier-one"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user