We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9e1966 commit ed0a17aCopy full SHA for ed0a17a
1 file changed
.github/workflows/deploy.yml
@@ -22,7 +22,7 @@ jobs:
22
uses: docker/build-push-action@v2
23
with:
24
context: .
25
- file: ./docker/Dockerfile.user
+ file: ./docker/Dockerfile.server
26
push: true
27
tags: anonymous961/candyshare:latest # Replace with your Docker Hub username and repository
28
@@ -43,6 +43,6 @@ jobs:
43
--name web-app \
44
-p 4000:4000 \
45
--restart=always \
46
- -e DATABASE_URL=${{ secrets.DATABASE_URL }} \
+ --env-file /home/ubuntu/.env \
47
anonymous961/candyshare:latest \
48
sh -c "bunx prisma migrate deploy && bun index.ts"
0 commit comments