mirror of
https://github.com/kossakovsky/n8n-install.git
synced 2026-03-07 22:33:11 +00:00
Open ports on localhost, when in private environment
This commit is contained in:
66
docker-compose.override.private.yml
Normal file
66
docker-compose.override.private.yml
Normal file
@@ -0,0 +1,66 @@
|
||||
services:
|
||||
flowise:
|
||||
ports:
|
||||
- 127.0.0.1:3001:3001
|
||||
|
||||
open-webui:
|
||||
ports:
|
||||
- 127.0.0.1:8080:8080
|
||||
|
||||
n8n:
|
||||
ports:
|
||||
- 127.0.0.1:5678:5678
|
||||
|
||||
qdrant:
|
||||
ports:
|
||||
- 127.0.0.1:6333:6333
|
||||
- 127.0.0.1:6334:6334
|
||||
|
||||
neo4j:
|
||||
ports:
|
||||
- 127.0.0.1:7473:7473
|
||||
- 127.0.0.1:7474:7474
|
||||
- 127.0.0.1:7687:7687
|
||||
|
||||
langfuse-worker:
|
||||
ports:
|
||||
- 127.0.0.1:3030:3030
|
||||
|
||||
langfuse-web:
|
||||
ports:
|
||||
- 127.0.0.1:3000:3000
|
||||
|
||||
clickhouse:
|
||||
ports:
|
||||
- 127.0.0.1:8123:8123
|
||||
- 127.0.0.1:9000:9000
|
||||
- 127.0.0.1:9009:9009
|
||||
|
||||
minio:
|
||||
ports:
|
||||
- 127.0.0.1:9010:9000
|
||||
- 127.0.0.1:9011:9001
|
||||
|
||||
postgres:
|
||||
ports:
|
||||
- 127.0.0.1:5433:5432
|
||||
|
||||
redis:
|
||||
ports:
|
||||
- 127.0.0.1:6379:6379
|
||||
|
||||
searxng:
|
||||
ports:
|
||||
- 127.0.0.1:8081:8080
|
||||
|
||||
ollama-cpu:
|
||||
ports:
|
||||
- 127.0.0.1:11434:11434
|
||||
|
||||
ollama-gpu:
|
||||
ports:
|
||||
- 127.0.0.1:11434:11434
|
||||
|
||||
ollama-gpu-amd:
|
||||
ports:
|
||||
- 127.0.0.1:11434:11434
|
||||
@@ -70,6 +70,8 @@ def start_local_ai(profile=None, environment=None):
|
||||
if profile and profile != "none":
|
||||
cmd.extend(["--profile", profile])
|
||||
cmd.extend(["-f", "docker-compose.yml"])
|
||||
if environment and environment == "private":
|
||||
cmd.extend(["-f", "docker-compose.override.private.yml"])
|
||||
if environment and environment == "public":
|
||||
cmd.extend(["-f", "docker-compose.override.public.yml"])
|
||||
cmd.extend(["up", "-d"])
|
||||
|
||||
Reference in New Issue
Block a user