add initial complete webui, more ai commands for moderation, add api
This commit is contained in:
parent
19e794e34c
commit
173d4e7a52
112 changed files with 8176 additions and 780 deletions
13
docker-compose.yml.ai.example
Normal file → Executable file
13
docker-compose.yml.ai.example
Normal file → Executable file
|
@ -2,23 +2,26 @@ services:
|
|||
kowalski:
|
||||
build: .
|
||||
container_name: kowalski
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "3000:3000"
|
||||
volumes:
|
||||
- ./.env:/usr/src/app/.env:ro
|
||||
- ./telegram/props/lastfm.json:/usr/src/app/telegram/props/lastfm.json
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
env_file:
|
||||
- .env
|
||||
depends_on:
|
||||
- postgres
|
||||
- ollama
|
||||
ollama:
|
||||
image: ollama/ollama
|
||||
container_name: kowalski-ollama
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./ollama:/root/.ollama
|
||||
postgres:
|
||||
image: postgres:17
|
||||
container_name: kowalski-postgres
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 5433:5432
|
||||
volumes:
|
||||
- ./db:/var/lib/postgresql/data
|
||||
environment:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue