Skip to content

Commit b1feb26

Browse files
committed
add quant-net to db-backup
increase ulimits on nginx-proxy-manager add wireguard support to llama-router
1 parent 9f0c330 commit b1feb26

3 files changed

Lines changed: 16 additions & 3 deletions

File tree

apps/db-backup/docker-compose.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,6 @@ networks:
3535
mariadb:
3636
external: true
3737
name: mariadb-net
38+
quantdb:
39+
external: true
40+
name: quantdb-net

apps/nginx-proxy-manager/docker-compose.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ services:
44
container_name: nginx-proxy-manager
55
hostname: nginx-proxy-manager
66
restart: unless-stopped
7+
ulimits:
8+
nofile:
9+
soft: 65535
10+
hard: 65535
711
# ports must be exposed
812
# 81 must be exposed to allow initial configuration
913
# 80 and 443 must be exposed for proxy operation

experiments/llama-router/docker-compose.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,13 @@ services:
44
container_name: llama-router
55
hostname: llama-router
66
restart: unless-stopped
7+
cap_add:
8+
- NET_ADMIN
9+
devices:
10+
- /dev/net/tun
711
volumes:
812
- ../../lib/llama-router:/app/data
13+
- ../../lib/llama-router/wireguard:/shared/wireguard
914
env_file:
1015
- .env
1116
# GET /health on dashboard (80), Ollama API (11434), or llama.cpp API (8080). Uses python3 — slim image has no curl.
@@ -31,11 +36,12 @@ services:
3136
timeout: 10s
3237
retries: 3
3338
start_period: 30s
34-
# ports:
39+
ports:
3540
# - 80:80
3641
# - 8080:8080
37-
# - 11434:11434
38-
# - 9200:9200
42+
- 11434:11434
43+
- 9200:9200
44+
- "51820:51820/udp"
3945
networks:
4046
- proxy
4147

0 commit comments

Comments
 (0)