We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Update deploy-prod.yml workflow to mount identity.key volume
1 parent b7da0e0 commit 61c6694Copy full SHA for 61c6694
.github/workflows/deploy-prod.yml
@@ -99,4 +99,5 @@ jobs:
99
docker image rm ghcr.io/netsepio/gateway:v1.1
100
echo ${{ secrets.GHCR_TOKEN }} | docker login ghcr.io -u ${{ secrets.GHCR_USERNAME }} --password-stdin
101
docker pull ghcr.io/netsepio/gateway:v1.1
102
- docker run --restart=on-failure:14 --dns=1.1.1.1 --name="gateway_v1_1" --env-file=.env -p 3001:3000 --net=netsepio_prod_network -d ghcr.io/netsepio/gateway:v1.1
+ docker run --restart=on-failure:14 --dns=1.1.1.1 --name="gateway_v1_1" --env-file=.env -p 3001:3000 --net=netsepio_prod_network -v "$(pwd)/identity.key:/app/secret/identity.key" -d ghcr.io/netsepio/gateway:v1.1
103
+
0 commit comments