TelegramBot/docker-compose.yml.ai.example
Aidan 4d540078f5
Some checks are pending
njsscan sarif / njsscan code scanning (push) Waiting to run
Update AUTHORS File / update-authors (push) Waiting to run
add postgres db, use settings and user data, lots of cleanup and logic fixes, bug fixes, better error handling, update docs and docker
2025-06-30 02:04:32 -04:00

27 lines
No EOL
621 B
Text

services:
kowalski:
build: .
container_name: kowalski
restart: unless-stopped
volumes:
- ./.env:/usr/src/app/.env:ro
environment:
- NODE_ENV=production
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:
- POSTGRES_USER=kowalski
- POSTGRES_PASSWORD=kowalski
- POSTGRES_DB=kowalski