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.
1 parent ffb1fe0 commit d06ad36Copy full SHA for d06ad36
.github/workflows/prod-deploy.yml
@@ -25,5 +25,16 @@ jobs:
25
run: |
26
docker run -d --name zendoc.io \
27
-p 4000:3000 \
28
+ -e DB_USER=${{ secrets.DB_USER }} \
29
+ -e DB_PASS=${{ secrets.DB_PASS }} \
30
+ -e DB_HOST=${{ secrets.DB_HOST }} \
31
+ -e DB_PORT=${{ secrets.DB_PORT }} \
32
+ -e DB_DB=${{ secrets.DB_DB }} \
33
+ -e ENCRYPTION_KEY=${{ secrets.ENCRYPTION_KEY }} \
34
+ -e SMTP_HOST=${{ secrets.SMTP_HOST }} \
35
+ -e SMTP_PORT=${{ secrets.SMTP_PORT }} \
36
+ -e SMTP_PASSWORD=${{ secrets.SMTP_PASSWORD }} \
37
+ -e SMTP_USER=${{ secrets.SMTP_USER }} \
38
+ -e SMTP_FROM=${{ secrets.SMTP_FROM }} \
39
--restart unless-stopped \
40
zendoc.io:latest
0 commit comments