2024-06-19 01:44:22 +00:00
|
|
|
FROM lscr.io/linuxserver/wireguard:latest
|
|
|
|
|
|
|
|
ENV DANTE_LISTEN_INTERFACE eth1
|
|
|
|
ENV DANTE_LISTEN_PORT 1080
|
|
|
|
ENV DANTE_FORWARD_INTERFACE wg0
|
|
|
|
|
|
|
|
RUN mkdir -p /etc/dante
|
|
|
|
ADD danted.conf.template /etc/dante/danted.conf.template
|
|
|
|
ADD run-danted.sh /custom-services.d/run-danted.sh
|
|
|
|
|
|
|
|
RUN apk update
|
2024-06-19 04:46:27 +00:00
|
|
|
RUN apk add \
|
|
|
|
dante-server \
|
|
|
|
gettext-envsubst
|
2024-06-19 01:44:22 +00:00
|
|
|
|