From f6fa7a3b6e6db83cd09ad9e1cd6acd144f0854bf Mon Sep 17 00:00:00 2001 From: Peter Lewis Date: Thu, 21 Dec 2023 22:15:24 +0000 Subject: [PATCH 1/6] Update Dockerfile --- Dockerfile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0a2f0433..d73a7b5f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,9 +21,14 @@ RUN mv /app/node_modules /node_modules # Install Linux packages RUN apk add -U --no-cache \ - iptables \ - wireguard-tools \ - dumb-init + dpkg \ + dumb-init \ + iptables \ + iptables-legacy \ + wireguard-tools + +# Symlink iptables +RUN update-alternatives --install /sbin/iptables iptables /sbin/iptables-legacy 10 --slave /sbin/iptables-restore iptables-restore /sbin/iptables-legacy-restore --slave /sbin/iptables-save iptables-save /sbin/iptables-legacy-save # Expose Ports EXPOSE 51820/udp From c67f1cf5b51dc66cfbac1870093155d7890a8fa2 Mon Sep 17 00:00:00 2001 From: Peter Lewis Date: Thu, 21 Dec 2023 22:17:13 +0000 Subject: [PATCH 2/6] Update deploy-development.yml --- .github/workflows/deploy-development.yml | 36 ++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/deploy-development.yml diff --git a/.github/workflows/deploy-development.yml b/.github/workflows/deploy-development.yml new file mode 100644 index 00000000..8c140ee2 --- /dev/null +++ b/.github/workflows/deploy-development.yml @@ -0,0 +1,36 @@ +name: Build & Publish Development + +on: + workflow_dispatch: + +jobs: + deploy: + name: Build & Deploy + runs-on: ubuntu-latest + permissions: + packages: write + contents: read + steps: + - uses: actions/checkout@v4 + with: + ref: production + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build & Publish Docker Image + uses: docker/build-push-action@v5 + with: + push: true + platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8 + tags: ghcr.io/wg-easy/wg-easy:development \ No newline at end of file From 48d66f35463dda60c3500c3fbd35944ed7de4d37 Mon Sep 17 00:00:00 2001 From: Peter Lewis Date: Fri, 22 Dec 2023 06:07:17 +0000 Subject: [PATCH 3/6] Add Synology fix --- docs/changelog.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/changelog.json b/docs/changelog.json index 865a7cb7..8fc4b3ef 100644 --- a/docs/changelog.json +++ b/docs/changelog.json @@ -6,5 +6,6 @@ "5": "Many small improvements & feature requests. Enjoy!", "6": "Many small performance improvements & bug fixes. Enjoy!", "7": "Improved the look & performance of the upload/download chart.", - "8": "Updated to Node.js v18." -} \ No newline at end of file + "8": "Updated to Node.js v18.", + "9": "Fixed issue running on Synology." +} From be786e0a33d17c95ee17fa065f43aa06ed010dd6 Mon Sep 17 00:00:00 2001 From: Peter Lewis Date: Fri, 22 Dec 2023 06:08:20 +0000 Subject: [PATCH 4/6] Update VERSION --- src/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/package.json b/src/package.json index bedc826a..7674f131 100644 --- a/src/package.json +++ b/src/package.json @@ -1,5 +1,5 @@ { - "release": 8, + "release": 9, "name": "wg-easy", "version": "1.0.0", "description": "", @@ -25,4 +25,4 @@ "engines": { "node": "18" } -} \ No newline at end of file +} From 65c1e73b851c138d9a5186df8d5b3e08508fc94c Mon Sep 17 00:00:00 2001 From: Peter Lewis Date: Fri, 22 Dec 2023 06:25:38 +0000 Subject: [PATCH 5/6] Update changelog.json --- docs/changelog.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelog.json b/docs/changelog.json index 8fc4b3ef..9e26eceb 100644 --- a/docs/changelog.json +++ b/docs/changelog.json @@ -7,5 +7,5 @@ "6": "Many small performance improvements & bug fixes. Enjoy!", "7": "Improved the look & performance of the upload/download chart.", "8": "Updated to Node.js v18.", - "9": "Fixed issue running on Synology." + "9": "Fixed issue running on devices with older kernels." } From 2720d7e2b4e468498a395d52d8763e7bdc32f2be Mon Sep 17 00:00:00 2001 From: Peter Lewis Date: Fri, 22 Dec 2023 08:14:34 +0000 Subject: [PATCH 6/6] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d73a7b5f..db0fb085 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ RUN apk add -U --no-cache \ iptables-legacy \ wireguard-tools -# Symlink iptables +# Use iptables-legacy RUN update-alternatives --install /sbin/iptables iptables /sbin/iptables-legacy 10 --slave /sbin/iptables-restore iptables-restore /sbin/iptables-legacy-restore --slave /sbin/iptables-save iptables-save /sbin/iptables-legacy-save # Expose Ports