commit eaf3d5c3fb7f89fd999c4c2260a8eb8add3619fc Author: Emile Nijssen Date: Sat May 22 11:12:26 2021 +0200 wip diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4e31236 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM debian:bullseye + +# Install Linux packages +RUN apt update +RUN apt install -y wireguard iproute2 openresolv curl + +# Install Node.js +RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - +RUN apt-get install -y nodejs + +# RUN wg-quick up wg0 +EXPOSE 51820 +ENTRYPOINT ["tail", "-f", "/dev/null"] \ No newline at end of file diff --git a/config/client1/presharedkey b/config/client1/presharedkey new file mode 100644 index 0000000..6823a0c --- /dev/null +++ b/config/client1/presharedkey @@ -0,0 +1 @@ +/FdYIW1UYh+URg7zMU6x+Lsw2E1nMrtyMA8HavZ9h5g= diff --git a/config/client1/privatekey b/config/client1/privatekey new file mode 100644 index 0000000..e5580e7 --- /dev/null +++ b/config/client1/privatekey @@ -0,0 +1 @@ +sHUUDbaZBQshfOvvF8HeebhhXq3rDKWlW1Vm+6XMklU= diff --git a/config/client1/publickey b/config/client1/publickey new file mode 100644 index 0000000..e365ff0 --- /dev/null +++ b/config/client1/publickey @@ -0,0 +1 @@ +i8xWKqicnDkNL14I4B+I1zlB8od/booA1joIosWn7X4= diff --git a/config/privatekey b/config/privatekey new file mode 100644 index 0000000..87314e2 --- /dev/null +++ b/config/privatekey @@ -0,0 +1 @@ +iOQJS7OUUGPYATsX6nqlL+sOODoiWiN5IOE8Msfw/0o= diff --git a/config/publickey b/config/publickey new file mode 100644 index 0000000..227fbab --- /dev/null +++ b/config/publickey @@ -0,0 +1 @@ +BkdntwYazhYZzEEHhcYayq6TGw9/YUDQ251s+5bTgC0= diff --git a/config/wg0.conf b/config/wg0.conf new file mode 100644 index 0000000..559e488 --- /dev/null +++ b/config/wg0.conf @@ -0,0 +1,11 @@ +[Interface] +PrivateKey = iOQJS7OUUGPYATsX6nqlL+sOODoiWiN5IOE8Msfw/0o= # wg genkey > privatekey +# PublicKey = BkdntwYazhYZzEEHhcYayq6TGw9/YUDQ251s+5bTgC0= +Address = 10.8.0.1/24 +ListenPort = 51820 +DNS = 1.1.1.1 + +[Peer] +PublicKey = i8xWKqicnDkNL14I4B+I1zlB8od/booA1joIosWn7X4= +PresharedKey = MzplKtOQ44/IaAKri2VKqCoIlg4XiVH7TCp5bcYRTQU= +AllowedIPs = 10.8.0.2/32 \ No newline at end of file diff --git a/run-old.sh b/run-old.sh new file mode 100644 index 0000000..676f1e2 --- /dev/null +++ b/run-old.sh @@ -0,0 +1,19 @@ +docker run -d \ + --name=wireguard \ + + + + + + + + --cap-add=NET_ADMIN \ + --cap-add=SYS_MODULE \ + -e PUID=1000 \ + -e PGID=1000 \ + -e TZ=Europe/London \ + -p 51820:51820/udp \ + -v config:/config \ + -v modules:/lib/modules \ + --sysctl="net.ipv4.conf.all.src_valid_mark=1" \ + ghcr.io/linuxserver/wireguard \ No newline at end of file diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..32d9757 --- /dev/null +++ b/run.sh @@ -0,0 +1,9 @@ +docker run \ + -d \ + --name wg-easy \ + --cap-add=NET_ADMIN \ + --cap-add=SYS_MODULE \ + --sysctl="net.ipv4.conf.all.src_valid_mark=1" \ + --mount type=bind,source="$(pwd)"/config,target=/etc/wireguard \ + -p 51820:51820/udp \ + wg-easy \ No newline at end of file