-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f92b90e
commit c97de6f
Showing
1 changed file
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,15 +18,23 @@ jobs: | |
with: | ||
ssh-private-key: ${{ secrets.DEPLOY_SSH_KEY }} | ||
|
||
- name: Add host | ||
run: | | ||
ssh-keyscan [email protected] > ~/.ssh/known_hosts | ||
- name: Set up Docker Compose | ||
run: | | ||
# Install Docker Compose | ||
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" | ||
DOCKER_HOST=ssh://[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" |