Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}"}'

3 changes: 1 addition & 2 deletions .github/workflows/production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}"}'

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Loading