-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.hub.yml
More file actions
39 lines (36 loc) · 1.08 KB
/
docker-compose.hub.yml
File metadata and controls
39 lines (36 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# =============================================================================
# AgentBud — Docker Compose (Docker Hub Image)
# Pull the pre-built image from Docker Hub instead of building locally.
# Usage: docker compose -f docker-compose.hub.yml up -d
# =============================================================================
services:
agentbud:
image: om252345/agentbud:latest
ports:
- "3000:3000"
environment:
- PORT=3000
- REDIS_URL=redis://redis:6379
- DB_PATH=/app/data/agentbud.db
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
# Mount your local config for GitOps-style management
- ./agent-config.yaml:/app/agent-config.yaml
# Persist cryptographic keys across container restarts
- ./keys:/app/keys
# Persist SQLite database
- agentbud-data:/app/data
depends_on:
- redis
restart: unless-stopped
redis:
image: redis:alpine
ports:
- "6379:6379"
volumes:
- redis-data:/data
restart: unless-stopped
volumes:
agentbud-data:
redis-data: