codeflow-station-anti-stop-engine / docker-compose.yml
Abmacode12's picture
FROM node:20-alpine
7712ddd verified
raw
history blame contribute delete
557 Bytes
```yaml
version: '3.8'
services:
rosalinda:
build: .
ports:
- "3000:3000"
environment:
- ROSALINDA_TOKEN=${ROSALINDA_TOKEN}
- NODE_ENV=production
volumes:
- ./logs:/app/logs
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:3000/health"]
interval: 30s
timeout: 3s
retries: 3
ollama:
image: ollama/ollama
ports:
- "11434:11434"
volumes:
- ollama_data:/root/.ollama
restart: unless-stopped
volumes:
ollama_data:
```