- Add gitea/act_runner:0.3.0 to docker-compose stack on runner-jobs network - Add act_runner config template and directory provisioning - Add FORGEJO_RUNNER_TOKEN to env template - Add CI deploy SSH public key to authorized_keys via base role - Create .forgejo/workflows/deploy.yml: syntax-check on PR, deploy on push to master - Add .claude/launch.json with ansible-playbook configurations Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
1.4 KiB
YAML
20 lines
1.4 KiB
YAML
---
|
||
services_root: /opt/services
|
||
|
||
# Image versions
|
||
# IMPORTANT: pin each image to a specific version tag.
|
||
# Check Docker Hub for the latest stable release before updating.
|
||
traefik_image: "traefik:v3.3" # https://hub.docker.com/_/traefik/tags
|
||
vaultwarden_image: "vaultwarden/server:1.32.7" # https://hub.docker.com/r/vaultwarden/server/tags
|
||
forgejo_image: "codeberg.org/forgejo/forgejo:9"
|
||
forgejo_db_image: "postgres:16-alpine"
|
||
plane_frontend_image: "makeplane/plane-frontend:stable" # https://hub.docker.com/r/makeplane/plane-frontend/tags
|
||
plane_backend_image: "makeplane/plane-backend:stable" # https://hub.docker.com/r/makeplane/plane-backend/tags
|
||
plane_db_image: "postgres:16-alpine"
|
||
plane_redis_image: "redis:7-alpine"
|
||
# ВАЖНО: MinIO прекратил публикацию образов на Docker Hub с октября 2025.
|
||
# Последний стабильный тег на Docker Hub: RELEASE.2025-04-22T22-12-26Z
|
||
# Рекомендуется перейти на alpine/minio или собирать из исходников.
|
||
plane_minio_image: "minio/minio:RELEASE.2025-04-22T22-12-26Z" # https://hub.docker.com/r/minio/minio/tags
|
||
syncthing_image: "syncthing/syncthing:1.27" # https://hub.docker.com/r/syncthing/syncthing/tags
|
||
act_runner_image: "gitea/act_runner:0.3.0" # https://hub.docker.com/r/gitea/act_runner/tags
|