Files
unraid-tailscale-sidecar/Dockerfile

16 lines
354 B
Docker

FROM alpine:edge
LABEL maintainer="admin@minenet.at"
RUN apk update && \
apk add jq wget ca-certificates curl bind-tools iputils-ping speedtest-cli && \
mkdir -p /tailscale && \
rm -rf /config/.cache /tmp/*
ENV DATA_DIR="/tailscale"
COPY entrypoint.sh /opt/entrypoint.sh
RUN chmod +x /opt/entrypoint.sh
ENTRYPOINT ["/opt/entrypoint.sh"]