We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 087f5ab commit 8fae5cdCopy full SHA for 8fae5cd
2 files changed
experiments/llama-router/.env.example
@@ -0,0 +1,2 @@
1
+LLAMA_ROUTER_DATABASE_PATH=/app/data/llama_router.db
2
+LLAMA_ROUTER_CACHE_EXTERNAL_HOST=llama-router.ctrlh
experiments/llama-router/docker-compose.yml
@@ -0,0 +1,20 @@
+services:
+ llama-router:
3
+ image: ghcr.io/romkey/llama-router:latest
4
+ container_name: llama-router
5
+ hostname: llama-router
6
+ ports:
7
+# - "80:80"
8
+# - "11434:11434"
9
+ - 9200:9200
10
+ volumes:
11
+ - ../../lib/llama-router:/app/data
12
+ env_file:
13
+ - .env
14
+ restart: unless-stopped
15
+ networks:
16
+ - proxy
17
+networks:
18
+ proxy:
19
+ name: nginx-proxy-net
20
+ external: true
0 commit comments