Skip to content

Commit

Permalink
More compose
Browse files Browse the repository at this point in the history
  • Loading branch information
elliottminns committed Nov 11, 2024
1 parent f92b90e commit 6428df4
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@ jobs:
curl -L "https://github.com/docker/compose/releases/download/v2.19.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
- name: Copy over the docker compose file
- name: Run Docker Compose
run: |
scp -o StrictHostKeyChecking=no compose.prod.yaml [email protected]:guestbook/compose.yaml
- name: Deploy code via SSH
run: |
ssh -o StrictHostKeyChecking=no [email protected] "cd guestbook && docker compose up -d"
[email protected] docker-compose -f ./compose.prod.yaml up -d
# - name: Copy over the docker compose file
# run: |
# scp -o StrictHostKeyChecking=no compose.prod.yaml [email protected]:guestbook/compose.yaml
# - name: Deploy code via SSH
# run: |
# ssh -o StrictHostKeyChecking=no [email protected] "cd guestbook && docker compose up -d"

0 comments on commit 6428df4

Please sign in to comment.