Files
agent-bounty-protocol/docker-compose.yml
OG T 752a4a45d7
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 8s
feat: Enhance login page UI with delayed redirect instead of transparent 307
2026-06-08 18:37:35 +08:00

100 lines
2.8 KiB
YAML

version: '3.8'
services:
redis:
image: redis:7-alpine
container_name: agent_bounty_redis
restart: always
ports:
- "6379:6379"
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 5s
retries: 10
networks:
- agent-bounty-network
db:
image: postgres:14-alpine
container_name: agent_bounty_db
restart: always
environment:
POSTGRES_USER: agent
POSTGRES_PASSWORD: agent_password_secure
POSTGRES_DB: agent_bounty
ports:
- "5433:5432"
volumes:
- agent_bounty_pgdata:/var/lib/postgresql/data
networks:
- agent-bounty-network
healthcheck:
test: ["CMD-SHELL", "pg_isready -U agent"]
interval: 5s
timeout: 5s
retries: 5
web:
build:
context: .
dockerfile: Dockerfile
container_name: agent_bounty_web
restart: always
ports:
- "3000:3000"
environment:
# Use the docker internal network to connect to postgres
- DATABASE_URL=postgresql://agent:agent_password_secure@db:5432/agent_bounty?schema=public
- NODE_ENV=production
- REDIS_URL=redis://redis:6379
- API_KEY=${API_KEY:-super-secret-mcp-key}
- E2B_API_KEY=${E2B_API_KEY:-""}
- AUTO_WHITELIST_EXTERNAL_AGENTS=${AUTO_WHITELIST_EXTERNAL_AGENTS:-true}
- ALLOW_MCP_CLAIM_WITHOUT_STRIPE=${ALLOW_MCP_CLAIM_WITHOUT_STRIPE:-false}
- TELEGRAM_BOT_TOKEN=${TELEGRAM_BOT_TOKEN:-}
- TELEGRAM_CHAT_ID=${TELEGRAM_CHAT_ID:-}
- TELEGRAM_NOTIFY_EXTERNAL_ONLY=${TELEGRAM_NOTIFY_EXTERNAL_ONLY:-true}
- TELEGRAM_NOTIFY_SYSTEM_WARN_INTERNAL_SUPPRESS=${TELEGRAM_NOTIFY_SYSTEM_WARN_INTERNAL_SUPPRESS:-true}
- TRAFFIC_MONITOR_TOKEN=${TRAFFIC_MONITOR_TOKEN:-}
- VIBEWORK_TRAFFIC_WEBHOOK_URL=${VIBEWORK_TRAFFIC_WEBHOOK_URL:-}
depends_on:
db:
condition: service_healthy
redis:
condition: service_healthy
# We use a command override to run database push before starting next.js
command: >
sh -c "npx prisma@6.4.1 db push --schema=apps/web/prisma/schema.prisma --skip-generate && node apps/web/server.js"
healthcheck:
test: ["CMD-SHELL", "node -e \"const http=require('http');const req=http.get('http://127.0.0.1:3000/api/v1/health',(res)=>process.exit(res.statusCode===200?0:1));req.on('error',()=>process.exit(1));\""]
interval: 10s
timeout: 5s
retries: 30
start_period: 10s
stop_grace_period: 30s
networks:
- agent-bounty-network
agent:
build:
context: .
dockerfile: Dockerfile.agent
container_name: agent_bounty_agent
restart: always
ports:
- "3001:3001"
environment:
- NODE_ENV=production
networks:
- agent-bounty-network
networks:
agent-bounty-network:
driver: bridge
name: agent-bounty-network
volumes:
agent_bounty_pgdata: