fix(postiz): improve temporal integration

- increase elasticsearch memory to 512mb
- add temporal databases to initialization
- add postiz to final report
This commit is contained in:
Yury Kossakovsky
2026-01-17 19:56:29 -07:00
parent bf7ce20f7b
commit a99676e3d5
4 changed files with 9 additions and 5 deletions

View File

@@ -547,7 +547,6 @@ MASTODON_URL=https://mastodon.social
MASTODON_CLIENT_ID=
MASTODON_CLIENT_SECRET=
############
# WAHA (WhatsApp HTTP API) configuration
# Engine: NOWEB | WEBJS | GOWS

View File

@@ -777,7 +777,7 @@ services:
cluster.routing.allocation.disk.watermark.high: 256mb
cluster.routing.allocation.disk.watermark.flood_stage: 128mb
discovery.type: single-node
ES_JAVA_OPTS: -Xms256m -Xmx256m
ES_JAVA_OPTS: -Xms512m -Xmx512m
xpack.security.enabled: "false"
volumes:
- temporal_elasticsearch_data:/usr/share/elasticsearch/data
@@ -800,7 +800,7 @@ services:
POSTGRES_PWD: ${POSTGRES_PASSWORD}
POSTGRES_SEEDS: postgres
DB_PORT: 5432
TEMPORAL_UINAMESPACE: default
TEMPORAL_NAMESPACE: default
ENABLE_ES: "true"
ES_SEEDS: temporal-elasticsearch
ES_VERSION: v7
@@ -823,8 +823,8 @@ services:
restart: unless-stopped
logging: *default-logging
environment:
TEMPORAL_UIADDRESS: temporal:7233
TEMPORAL_UICORS_ORIGINS: http://localhost:3000
TEMPORAL_ADDRESS: temporal:7233
TEMPORAL_CORS_ORIGINS: http://localhost:3000
depends_on:
temporal:
condition: service_healthy

View File

@@ -97,6 +97,9 @@ fi
if is_profile_active "nocodb"; then
echo -e " ${GREEN}*${NC} ${WHITE}NocoDB${NC}: Create your account on first login"
fi
if is_profile_active "postiz"; then
echo -e " ${GREEN}*${NC} ${WHITE}Postiz${NC}: Create your account on first login"
fi
if is_profile_active "gost"; then
echo -e " ${GREEN}*${NC} ${WHITE}Gost Proxy${NC}: Routing AI traffic through external proxy"
fi

View File

@@ -30,6 +30,8 @@ INIT_DB_DATABASES=(
"lightrag"
"nocodb"
"postiz"
"temporal"
"temporal_visibility"
"waha"
)