[Komodo] Commit Sync: update master_sync.toml

This commit is contained in:
komodo
2025-07-20 20:22:11 +00:00
parent 8b1bf8381d
commit 0ba1acb6a6

View File

@@ -20,14 +20,24 @@ name = "automation"
server = "unraid" server = "unraid"
additional_env_files = [".env"] additional_env_files = [".env"]
file_contents = """ file_contents = """
networks:
Internal:
name: Internal_Network
external: true
traefik_gateway_external:
name: traefik_gateway_external
external: true
services: services:
n8n: n8n:
image: docker.n8n.io/n8nio/n8n image: docker.n8n.io/n8nio/n8n
restart: always restart: always
ports: ports:
- "127.0.0.1:5678:5678" - 5678:5678
expose: expose:
- 5678 - 5678
networks:
- Internal
- traefik_gateway_external
labels: labels:
- traefik.enable=true - traefik.enable=true
- traefik.http.routers.n8n.rule=Host(`${SUBDOMAIN}.${DOMAIN_NAME}`) - traefik.http.routers.n8n.rule=Host(`${SUBDOMAIN}.${DOMAIN_NAME}`)
@@ -51,8 +61,11 @@ services:
- WEBHOOK_URL=https://${SUBDOMAIN}.${DOMAIN_NAME}/ - WEBHOOK_URL=https://${SUBDOMAIN}.${DOMAIN_NAME}/
- GENERIC_TIMEZONE=${GENERIC_TIMEZONE} - GENERIC_TIMEZONE=${GENERIC_TIMEZONE}
volumes: volumes:
- /mnt/user/docker/n8n/home:/home/node/.n8n - n8n_data:/home/node/.n8n
- /mnt/user/docker/n8n/local-files:/files - /mnt/user/docker/n8n/local-files:/files
volumes:
n8n_data:
""" """
environment = """ environment = """
# DOMAIN_NAME and SUBDOMAIN together determine where n8n will be reachable from # DOMAIN_NAME and SUBDOMAIN together determine where n8n will be reachable from