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 6679a3c commit 2d5f187Copy full SHA for 2d5f187
1 file changed
.github/workflows/deploy-dev.yml
@@ -1,4 +1,4 @@
1
-name: Docker Build & Push and Deploy to dev for eatery-blue-backend
+name: Docker Build & Push and Deploy to dev for eatery-backend
2
3
on:
4
push:
@@ -32,7 +32,7 @@ jobs:
32
context: ./
33
file: ./Dockerfile
34
push: true
35
- tags: cornellappdev/eatery-blue-dev:${{ steps.vars.outputs.sha_short }}
+ tags: cornellappdev/eatery-dev:${{ steps.vars.outputs.sha_short }}
36
37
- name: Remote SSH and Deploy
38
uses: appleboy/ssh-action@v1.0.3
@@ -45,7 +45,7 @@ jobs:
45
script: |
46
export IMAGE_TAG=${{ steps.vars.outputs.sha_short }}
47
cd docker-compose
48
- docker stack rm thestack
+ docker-compose down
49
sleep 20s
50
- docker stack deploy -c docker-compose.yml thestack
+ docker-compose up -d
51
yes | docker system prune -a
0 commit comments