fix: disable discord-bot and walava-web until images exist in registry
These custom images (discord-bot, walava-web) are built by their own repos' CI/CD and pushed to git.walava.io registry. On a fresh server Forgejo hasn't run yet so images don't exist — bootstrap chicken/egg. Re-enable after Forgejo is up and images are pushed. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
f4688ed8be
commit
3b875f57d2
1 changed files with 23 additions and 24 deletions
|
|
@ -451,32 +451,31 @@ services:
|
|||
|
||||
|
||||
# ── Discord Bot ────────────────────────────────────────────────────────────
|
||||
# Infrastructure management bot: /status /logs /restart /deploy /metrics /backup
|
||||
# Image is built and pushed by the discord-bot repo CI/CD
|
||||
discord-bot:
|
||||
image: git.{{ domain_base }}/jack/discord-bot:latest
|
||||
container_name: discord-bot
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
DISCORD_TOKEN: "${DISCORD_BOT_TOKEN}"
|
||||
DISCORD_APP_ID: "{{ discord_bot_app_id }}"
|
||||
FORGEJO_TOKEN: "${FORGEJO_RUNNER_TOKEN}"
|
||||
FORGEJO_URL: "https://{{ domain_git }}"
|
||||
FORGEJO_REPO: "jack/infra"
|
||||
PROMETHEUS_URL: "http://{{ ip_tools }}:9090"
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
networks:
|
||||
- proxy # Discord API (internet) + reach tools server over public IP
|
||||
# NOTE: disabled until image is built & pushed to Forgejo registry
|
||||
# discord-bot:
|
||||
# image: git.{{ domain_base }}/jack/discord-bot:latest
|
||||
# container_name: discord-bot
|
||||
# restart: unless-stopped
|
||||
# environment:
|
||||
# DISCORD_TOKEN: "${DISCORD_BOT_TOKEN}"
|
||||
# DISCORD_APP_ID: "{{ discord_bot_app_id }}"
|
||||
# FORGEJO_TOKEN: "${FORGEJO_RUNNER_TOKEN}"
|
||||
# FORGEJO_URL: "https://{{ domain_git }}"
|
||||
# FORGEJO_REPO: "jack/infra"
|
||||
# PROMETHEUS_URL: "http://{{ ip_tools }}:9090"
|
||||
# volumes:
|
||||
# - /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
# networks:
|
||||
# - proxy
|
||||
|
||||
# ── Walava Landing ─────────────────────────────────────────────────────────
|
||||
# Landing page for walava.io — image built by walava-web repo CI/CD
|
||||
walava-web:
|
||||
image: git.{{ domain_base }}/jack/walava-web:latest
|
||||
container_name: walava-web
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- proxy
|
||||
# NOTE: disabled until image is built & pushed to Forgejo registry
|
||||
# walava-web:
|
||||
# image: git.{{ domain_base }}/jack/walava-web:latest
|
||||
# container_name: walava-web
|
||||
# restart: unless-stopped
|
||||
# networks:
|
||||
# - proxy
|
||||
|
||||
|
||||
# ── Outline wiki ────────────────────────────────────────────────────────────
|
||||
|
|
|
|||
Loading…
Reference in a new issue