dev #14

Merged
wtukatyr merged 24 commits from dev into main 2025-06-09 12:51:35 +03:00
2 changed files with 38 additions and 0 deletions
Showing only changes of commit bc8f4a5c98 - Show all commits

11
Jenkinsfile vendored
View File

@@ -17,13 +17,14 @@ pipeline {
) )
]) { ]) {
sh '''#!/bin/bash sh '''#!/bin/bash
ssh -i "$SSH_PRIVATE_KEY" -p 2222 saccada@saccada.xyz <<- _EOF_ ssh -i "$SSH_PRIVATE_KEY" -p 2222 saccada@saccada.xyz << 'EOF'
cd ~/ws/django-example-app cd ~/ws/django-example-app
git pull --rebase git pull --rebase
docker compose pull ls -la
docker compose down # docker compose pull
docker compose up -d # docker compose down
_EOF_''' # docker compose up -d
'EOF''''
} }
} }
} }