52 lines
1013 B
YAML
52 lines
1013 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:17
|
|
restart: unless-stopped
|
|
env_file: ".env"
|
|
volumes:
|
|
- ./postgresql/data:/var/lib/postgresql/data
|
|
ports:
|
|
- "${POSTGRES_PORT}:5432"
|
|
networks:
|
|
- fbla26
|
|
fbla26:
|
|
image: git.marinodev.com/marinodev/fbla26_ci:latest
|
|
restart: unless-stopped
|
|
env_file: ".env"
|
|
ports:
|
|
- "${FBLA26_PORT}:3000"
|
|
networks:
|
|
- fbla26
|
|
volumes:
|
|
- ./.env:/srv/fbla26/.env
|
|
- /var/fbla26/uploads/:/srv/fbla26/uploads/
|
|
llama:
|
|
image: ghcr.io/ggml-org/llama.cpp:server
|
|
restart: unless-stopped
|
|
env_file: ".env"
|
|
ports:
|
|
- "${LLAMA_PORT}:8080"
|
|
networks:
|
|
- fbla26
|
|
volumes:
|
|
- ./llm-models:/models:ro
|
|
command:
|
|
- -m
|
|
- /models/Qwen3VL-2B-Instruct-Q4_K_M.gguf
|
|
- --mmproj
|
|
- /models/mmproj-Qwen3VL-2B-Instruct-Q8_0.gguf
|
|
- --host
|
|
- 0.0.0.0
|
|
- --port
|
|
- "8080"
|
|
- -n
|
|
- "512"
|
|
|
|
|
|
|
|
networks:
|
|
fbla26:
|
|
external: true
|