13 lines
291 B
YAML
13 lines
291 B
YAML
services:
|
|
llmproxy:
|
|
image: mediaeng/llmproxy:latest
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
env_file: .env
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
volumes:
|
|
- ./backend/test.db:/app/backend/test.db
|
|
- ./backend/logs:/app/backend/logs
|
|
|