migrate
Deploy authentik / deploy (push) Successful in 13s
Deploy dockhand / deploy (push) Successful in 7s
Deploy duplicati / deploy (push) Successful in 10s
Deploy immich / deploy (push) Failing after 6s
Deploy obsidian / deploy (push) Successful in 6s
Deploy Sencho / deploy (push) Failing after 5s
Deploy watchtower / deploy (push) Failing after 7s

This commit is contained in:
Mike McFetridge
2026-07-21 17:26:47 -04:00
parent 0aaca928ba
commit 64a0911d7b
15 changed files with 504 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
name: Deploy dockhand
on:
push:
branches:
- main
paths:
- 'dockhand/**' # <-- CRITICAL: Only triggers if files in the watchtower folder change
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Sync dockhand to Host
uses: appleboy/scp-action@master
with:
host: "192.168.2.6"
username: "miker"
key: ${{ secrets.SSH_PRIVATE_KEY }}
source: "dockhand/"
target: "/home/miker/docker"
- name: Deploy dockhand Stack
uses: appleboy/ssh-action@master
with:
host: "192.168.2.6"
username: "miker"
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: |
cd /home/miker/docker/dockhand
docker compose up -d --remove-orphans