diff --git a/.github/workflows/development.yaml b/.github/workflows/development.yaml index 8246a62..bbcec02 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: @@ -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 86f8d34..d753945 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: @@ -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/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"]