refactor: move runner+watchtower to portainer-compose (management plane)

- portainer-compose.yml now owns all three management-plane services:
  portainer, github-runner, watchtower. All mount the docker socket;
  none belong to the application stack.
- Watchtower carries over its existing env (DOCKER_API_VERSION, ntfy URL).
  portainer, runner, and watchtower itself are labeled to opt out of
  watchtower auto-updates.
- docker-compose.yml: remove github-runner (was causing self-kill during
  dc up -d; exclusion workaround no longer needed)
- deploy.yml: simplified back to plain dc up -d with no service filtering
This commit is contained in:
ginnoir
2026-06-04 14:31:33 -05:00
parent 421cde626f
commit 353263ddf8
3 changed files with 41 additions and 29 deletions
+1 -4
View File
@@ -23,10 +23,7 @@ jobs:
- name: Pull and apply compose
run: |
$COMPOSE pull
# Exclude github-runner from up -d — recreating the container that
# is running this job would kill the workflow mid-step.
SERVICES=$($COMPOSE config --services | grep -v '^github-runner$' | tr '\n' ' ')
$COMPOSE up -d $SERVICES
$COMPOSE up -d
- name: Reload Caddyfile
run: |