Add Postiz service integration and configuration

- Introduced Postiz as a new service in docker-compose.yml, including necessary environment variables and volume configurations.
- Updated Caddyfile to set up reverse proxy for Postiz.
- Enhanced README.md to document Postiz and its hostname for user reference.
- Modified scripts to include Postiz in the service selection wizard and final report for improved user guidance.
This commit is contained in:
Yury Kossakovsky
2025-08-19 13:54:50 -06:00
parent 512f919423
commit 25ebc661b8
6 changed files with 30 additions and 0 deletions

View File

@@ -17,6 +17,8 @@ volumes:
weaviate_data:
portainer_data:
comfyui_data:
postiz-config:
postiz-uploads:
x-n8n: &service-n8n
build:
@@ -221,6 +223,7 @@ services:
- SEARXNG_USERNAME=${SEARXNG_USERNAME}
- SEARXNG_PASSWORD_HASH=${SEARXNG_PASSWORD_HASH}
- PORTAINER_HOSTNAME=${PORTAINER_HOSTNAME}
- POSTIZ_HOSTNAME=${POSTIZ_HOSTNAME}
- COMFYUI_HOSTNAME=${COMFYUI_HOSTNAME}
- COMFYUI_USERNAME=${COMFYUI_USERNAME}
- COMFYUI_PASSWORD_HASH=${COMFYUI_PASSWORD_HASH}
@@ -598,6 +601,15 @@ services:
- portainer_data:/data
- ${DOCKER_SOCKET_LOCATION:-/var/run/docker.sock}:/var/run/docker.sock
postiz:
image: ghcr.io/gitroomhq/postiz-app:latest
container_name: postiz
profiles: ["postiz"]
restart: unless-stopped
volumes:
- postiz-config:/config
- postiz-uploads:/uploads
comfyui:
image: yanwk/comfyui-boot:cu124-slim
container_name: comfyui