2025-12-17 19:31:03 -05:00
|
|
|
version: '3.8'
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
kekbot:
|
2025-12-24 21:03:57 -05:00
|
|
|
image: tea.kleptonix.com/hllywluis/kekbot.js:latest
|
2025-12-17 19:31:03 -05:00
|
|
|
container_name: kekbot
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
env_file:
|
|
|
|
|
- .env
|
2026-03-09 12:55:52 -04:00
|
|
|
environment:
|
|
|
|
|
- NANO_MODEL=${NANO_MODEL}
|
2025-12-17 19:31:03 -05:00
|
|
|
volumes:
|
|
|
|
|
# Mount logs directory if you want to persist logs
|
|
|
|
|
- ./logs:/app/logs
|
|
|
|
|
# Uncomment if you need to expose a port for health checks
|
|
|
|
|
# ports:
|
|
|
|
|
# - "3000:3000"
|
|
|
|
|
# Health check (optional)
|
|
|
|
|
healthcheck:
|
|
|
|
|
test: ["CMD", "node", "-e", "process.exit(0)"]
|
|
|
|
|
interval: 30s
|
|
|
|
|
timeout: 10s
|
|
|
|
|
retries: 3
|
|
|
|
|
start_period: 40s
|