From c356a858c23ad66abf132517170d4d9551cba51a Mon Sep 17 00:00:00 2001 From: Mitchell Smith Date: Tue, 12 May 2026 15:01:07 +1000 Subject: [PATCH 1/3] updating container name to match what the deploy webhook expects --- .github/workflows/development.yaml | 2 +- .github/workflows/production.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/development.yaml b/.github/workflows/development.yaml index 8246a62..7aeebae 100644 --- a/.github/workflows/development.yaml +++ b/.github/workflows/development.yaml @@ -9,7 +9,7 @@ permissions: packages: write env: - CONTAINER_NAME: nvdaremote-staging + CONTAINER_NAME: remote-server-staging WEBHOOK_URL: https://webhook-internal.nvaccess.org/hooks/deploy jobs: diff --git a/.github/workflows/production.yaml b/.github/workflows/production.yaml index 86f8d34..12c6c4b 100644 --- a/.github/workflows/production.yaml +++ b/.github/workflows/production.yaml @@ -9,7 +9,7 @@ permissions: packages: write env: - CONTAINER_NAME: nvdaremote-production + CONTAINER_NAME: remote-server-production WEBHOOK_URL: https://webhook-internal.nvaccess.org/hooks/deploy jobs: From 9b2bb6227c244a0f35b932b424f3e3eab2f69098 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 12 May 2026 05:05:34 +0000 Subject: [PATCH 2/3] Pre-commit auto-fix --- .github/workflows/development.yaml | 1 - .github/workflows/production.yaml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/development.yaml b/.github/workflows/development.yaml index 7aeebae..bbcec02 100644 --- a/.github/workflows/development.yaml +++ b/.github/workflows/development.yaml @@ -49,4 +49,3 @@ jobs: curl -X POST ${{ env.WEBHOOK_URL }} \ -H "Content-Type: application/json" \ -d '{"container": "${{ env.CONTAINER_NAME }}", "secret": "${{ secrets.DOCKER_WEBHOOK_SECRET }}"}' - diff --git a/.github/workflows/production.yaml b/.github/workflows/production.yaml index 12c6c4b..d753945 100644 --- a/.github/workflows/production.yaml +++ b/.github/workflows/production.yaml @@ -49,4 +49,3 @@ jobs: curl -X POST ${{ env.WEBHOOK_URL }} \ -H "Content-Type: application/json" \ -d '{"container": "${{ env.CONTAINER_NAME }}", "secret": "${{ secrets.DOCKER_WEBHOOK_SECRET }}"}' - From 3a8f5fb1c5c305a42bf1a89519cacc334d2c8ddf Mon Sep 17 00:00:00 2001 From: Mitchell Smith Date: Tue, 12 May 2026 15:29:21 +1000 Subject: [PATCH 3/3] bind to an ipv4 address, by default it uses ipv6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a4987f8..632490a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,4 +47,4 @@ RUN addgroup -S remotegroup && adduser -S remoteuser -G remotegroup USER remoteuser EXPOSE 6837 # Run the server -CMD ["uv", "run", "server.py"] +CMD ["uv", "run", "server.py", "--network-interface", "0.0.0.0"]