mirror of
https://github.com/kossakovsky/n8n-install.git
synced 2026-05-01 20:16:18 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user