chore: update sathub config
All checks were successful
Ansible Lint Check / check-ansible (push) Successful in 3s
Nix Format Check / check-format (push) Successful in 1m7s
Python Lint Check / check-python (push) Successful in 5s

Signed-off-by: Menno van Leeuwen <menno@vleeuwen.me>
This commit is contained in:
2025-10-08 15:04:46 +02:00
parent 22b308803c
commit ba2faf114d

View File

@@ -1,7 +1,7 @@
services: services:
# Migration service - runs once on stack startup # Migration service - runs once on stack startup
migrate: migrate:
image: ghcr.io/vleeuwenmenno/sathub/backend:latest image: ghcr.io/vleeuwenmenno/sathub-backend/backend:latest
container_name: sathub-migrate container_name: sathub-migrate
restart: "no" restart: "no"
command: ["./main", "auto-migrate"] command: ["./main", "auto-migrate"]
@@ -28,7 +28,7 @@ services:
- postgres - postgres
backend: backend:
image: ghcr.io/vleeuwenmenno/sathub/backend:latest image: ghcr.io/vleeuwenmenno/sathub-backend/backend:latest
container_name: sathub-backend container_name: sathub-backend
restart: unless-stopped restart: unless-stopped
command: ["./main", "api"] command: ["./main", "api"]
@@ -70,7 +70,7 @@ services:
condition: service_completed_successfully condition: service_completed_successfully
worker: worker:
image: ghcr.io/vleeuwenmenno/sathub/backend:latest image: ghcr.io/vleeuwenmenno/sathub-backend/backend:latest
container_name: sathub-worker container_name: sathub-worker
restart: unless-stopped restart: unless-stopped
command: ["./main", "worker"] command: ["./main", "worker"]
@@ -118,7 +118,7 @@ services:
- sathub - sathub
frontend: frontend:
image: ghcr.io/vleeuwenmenno/sathub/frontend:latest image: ghcr.io/vleeuwenmenno/sathub-frontend/frontend:latest
container_name: sathub-frontend container_name: sathub-frontend
restart: unless-stopped restart: unless-stopped
environment: environment:
@@ -154,7 +154,7 @@ services:
- WATCHTOWER_INCLUDE_STOPPED=false - WATCHTOWER_INCLUDE_STOPPED=false
- REPO_USER=${REPO_USER} - REPO_USER=${REPO_USER}
- REPO_PASS=${REPO_PASS} - REPO_PASS=${REPO_PASS}
command: --interval 30 --cleanup --include-stopped=false sathub-backend sathub-worker sathub-frontend command: --interval 30 --cleanup --include-stopped=false sathub-backend sathub-worker sathub-frontend sathub-migrate
networks: networks:
- sathub - sathub