Installing rocketchat failed with
invalid IPv4 address: ParseAddr("IP_DATA_2"): unable to parse IP
ipUpdateComposeTags allocates one IP per SERVICE_TAG_N annotation and fills
IP_TAG_i only where SERVICE_TAG_i exists. The four new apps tagged only their
primary service, so every sidecar — matrix's postgres, mattermost's postgres,
rocketchat's mongo, and fifteen of stoat's sixteen — kept a literal IP_DATA_n
in the deployed compose and docker refused to create the container.
Tag every service that carries an ipv4_address, index-aligned with its IP_TAG.
For stoat that also meant moving caddy from SERVICE_TAG_1 to _6 so the indices
line up with the IPs rather than the reading order.
mastodon had the same latent break (IP_TAG_2 and _3 untagged) and is fixed the
same way — it would have failed on first install for the same reason.
SERVICE_TAG carries the compose *key*, not container_name: 'libreportal app
restart <app> <service>' passes it to 'docker compose restart', which only
understands keys.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
26 lines
1.0 KiB
Bash
26 lines
1.0 KiB
Bash
#!/bin/bash
|
|
|
|
# Gitea install hooks — mirror CFG_GITEA_METRICS_TOKEN_1 into the Prometheus
|
|
# scrape fragment so the bearer token in the compose env matches what the
|
|
# Prometheus side sends.
|
|
|
|
gitea_install_post_compose()
|
|
{
|
|
local app_name="$1"
|
|
|
|
# The driver already ran monitoringToggleAppConfig "$app_name" docker-compose.yml,
|
|
# so the metrics block reflects CFG_GITEA_MONITORING. /metrics rides
|
|
# Gitea's public web port and is token-protected; sync the token into
|
|
# the scrape config so the two sides agree.
|
|
if monitoringAppEnabled "$app_name"; then
|
|
if [[ -n "$CFG_GITEA_METRICS_TOKEN_1" ]]; then
|
|
local result
|
|
result=$(runFileOp sed -i "s|GITEA_METRICS_TOKEN_PLACEHOLDER|${CFG_GITEA_METRICS_TOKEN_1}|g" \
|
|
"$containers_dir$app_name/resources/monitoring/prometheus-scrape.yml")
|
|
checkSuccess "Synced Gitea /metrics token to the Prometheus scrape config"
|
|
else
|
|
isNotice "CFG_GITEA_METRICS_TOKEN_1 is empty — Gitea /metrics scrape may 401."
|
|
fi
|
|
fi
|
|
}
|