mirror of
https://github.com/MrUnknownDE/tor-relay-docker.git
synced 2026-04-09 18:03:47 +02:00
35 lines
973 B
Docker
35 lines
973 B
Docker
FROM ghcr.io/linuxserver/baseimage-alpine:3.15
|
|
|
|
LABEL maintainer "Nicolas Coutin <ilshidur@gmail.com>"
|
|
|
|
ARG DEBIAN_FRONTEND="noninteractive"
|
|
ENV XDG_DATA_HOME="/config" \
|
|
XDG_CONFIG_HOME="/config"
|
|
ENV TZ America/Los_Angeles
|
|
|
|
RUN sed -i -e 's/v[[:digit:]]\..*\//edge\//g' /etc/apk/repositories
|
|
RUN apk update
|
|
RUN apk --no-cache add bash tzdata tor=0.4.7.7-r1
|
|
|
|
EXPOSE 9001 9030
|
|
|
|
# TOR configuration through environment variables.
|
|
ENV RELAY_TYPE relay
|
|
ENV TOR_ORPort 9001
|
|
ENV TOR_DirPort 9030
|
|
ENV TOR_DataDirectory /data
|
|
ENV TOR_ContactInfo "Random Person nobody@tor.org"
|
|
ENV TOR_RelayBandwidthRate "100 KBytes"
|
|
ENV TOR_RelayBandwidthBurst "200 KBytes"
|
|
|
|
# Copy the default configurations.
|
|
COPY torrc.bridge.default /config/torrc.bridge.default
|
|
COPY torrc.relay.default /config/torrc.relay.default
|
|
COPY torrc.exit.default /config/torrc.exit.default
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod ugo+rx /entrypoint.sh
|
|
|
|
COPY /root /
|
|
VOLUME /data
|