Add initial implementation of noThinkProxy with Docker support and README documentation
This commit is contained in:
23
docker-compose.yml
Normal file
23
docker-compose.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
services:
|
||||
nothinkproxy:
|
||||
image: registry.aquantico.lan/nothinkproxy:latest
|
||||
container_name: nothinkproxy
|
||||
restart: always
|
||||
networks:
|
||||
- traefik
|
||||
environment:
|
||||
- PORT=11435
|
||||
- OLLAMA_URL=https://ollama.aquantico.de/api/chat
|
||||
- OLLAMA_MODEL=qwen3.6:35b-a3b-q4_K_M
|
||||
- OLLAMA_AUTH=324GF44-50AA-4B57-9386-K435DLJ764DFR
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.nothinkproxy.rule=Host(`claude-proxy.aquantico.lan`)"
|
||||
- "traefik.http.routers.nothinkproxy.entrypoints=websecure"
|
||||
- "traefik.http.routers.nothinkproxy.tls=true"
|
||||
- "traefik.http.services.nothinkproxy.loadbalancer.server.port=11435"
|
||||
- "traefik.docker.network=traefik"
|
||||
|
||||
networks:
|
||||
traefik:
|
||||
external: true
|
||||
Reference in New Issue
Block a user