-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
55 lines (52 loc) · 1.48 KB
/
Copy pathdocker-compose.yml
File metadata and controls
55 lines (52 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
services:
n8n:
image: n8nio/n8n:latest
container_name: n8n
ports:
- "5678:5678"
environment:
- N8N_HOST=0.0.0.0
- N8N_PORT=5678
- N8N_PROTOCOL=http
- WEBHOOK_URL=http://YOUR_SERVER_IP:5678/
- N8N_SECURE_COOKIE=false
- NODE_ENV=production
volumes:
- n8n_data:/home/node/.n8n
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped
hermes-webui:
image: ghcr.io/nesquena/hermes-webui:latest
container_name: hermes-webui
restart: unless-stopped
environment:
- WANTED_UID=1000
- WANTED_GID=1000
- HERMES_WEBUI_STATE_DIR=/home/hermeswebui/.hermes/webui-mvp
volumes:
- /home/YOUR_USERNAME/.hermes:/home/hermeswebui/.hermes
- /home/YOUR_USERNAME/workspace:/workspace
ports:
- "8787:8787"
extra_hosts:
- "host.docker.internal:host-gateway"
# Postgres for LiteLLM Admin UI and virtual key generation.
# Required: LiteLLM's Prisma schema is hardcoded for PostgreSQL — SQLite is
# not supported. After `docker compose up -d litellm-db`, apply the schema
# with `prisma db push` (see Step 2d in index.html).
litellm-db:
image: postgres:16
container_name: litellm-db
restart: unless-stopped
environment:
- POSTGRES_USER=litellm
- POSTGRES_PASSWORD=litellm
- POSTGRES_DB=litellm
volumes:
- litellm_db:/var/lib/postgresql/data
ports:
- "5432:5432"
volumes:
n8n_data:
litellm_db: