first commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
FROM debian:bullseye-slim
|
||||
|
||||
RUN groupadd --gid 1000 debian-transmission
|
||||
RUN useradd --uid 1000 --gid 1000 -d /var/lib/transmission-daemon debian-transmission
|
||||
|
||||
RUN mkdir /home/torrent/
|
||||
RUN chown debian-transmission.debian-transmission /home/torrent
|
||||
|
||||
RUN apt update && apt upgrade -y
|
||||
RUN apt install -y openvpn transmission-daemon
|
||||
RUN apt install -y curl wget iputils-ping bind9-dnsutils net-tools whois vim
|
||||
|
||||
COPY certs/ /etc/openvpn/expressvpn/
|
||||
COPY login.conf /root/login.conf
|
||||
RUN chmod 600 /root/login.conf
|
||||
|
||||
COPY entrypoint.sh /
|
||||
ENTRYPOINT ["/bin/bash","/entrypoint.sh"]
|
||||
Reference in New Issue
Block a user