mirror of
https://github.com/linuxserver/docker-wireguard.git
synced 2026-01-17 10:22:00 +08:00
47 lines
1.4 KiB
Docker
47 lines
1.4 KiB
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM ghcr.io/linuxserver/baseimage-alpine:3.23
|
|
|
|
# set version label
|
|
ARG BUILD_DATE
|
|
ARG VERSION
|
|
ARG WIREGUARD_RELEASE
|
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
|
LABEL maintainer="thespad"
|
|
|
|
RUN \
|
|
if [ -z ${WIREGUARD_RELEASE+x} ]; then \
|
|
WIREGUARD_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.23/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
|
|
&& awk '/^P:wireguard-tools$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
|
|
fi && \
|
|
echo "**** install dependencies ****" && \
|
|
apk add --no-cache \
|
|
bc \
|
|
coredns \
|
|
grep \
|
|
iproute2 \
|
|
iptables \
|
|
ip6tables \
|
|
iputils \
|
|
kmod \
|
|
libcap-utils \
|
|
libqrencode-tools \
|
|
net-tools \
|
|
nftables \
|
|
openresolv \
|
|
wireguard-tools==${WIREGUARD_RELEASE} && \
|
|
echo "wireguard" >> /etc/modules && \
|
|
sed -i 's|\[\[ $proto == -4 \]\] && cmd sysctl -q net\.ipv4\.conf\.all\.src_valid_mark=1|[[ $proto == -4 ]] \&\& [[ $(sysctl -n net.ipv4.conf.all.src_valid_mark) != 1 ]] \&\& cmd sysctl -q net.ipv4.conf.all.src_valid_mark=1|' /usr/bin/wg-quick && \
|
|
rm -rf /etc/wireguard && \
|
|
ln -s /config/wg_confs /etc/wireguard && \
|
|
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
|
|
echo "**** clean up ****" && \
|
|
rm -rf \
|
|
/tmp/*
|
|
|
|
# add local files
|
|
COPY /root /
|
|
|
|
# ports and volumes
|
|
EXPOSE 51820/udp
|