-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
40 lines (36 loc) · 952 Bytes
/
docker-compose.dev.yml
File metadata and controls
40 lines (36 loc) · 952 Bytes
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
40
version: '3.8'
# Development-specific docker-compose configuration
# Usage: docker-compose -f docker-compose.yml -f docker-compose.dev.yml up
services:
# Add pgAdmin for database management
pgadmin:
image: dpage/pgadmin4:latest
container_name: ai-agent-pgadmin
environment:
PGADMIN_DEFAULT_EMAIL: admin@example.com
PGADMIN_DEFAULT_PASSWORD: admin
PGADMIN_CONFIG_SERVER_MODE: 'False'
ports:
- "5050:80"
volumes:
- pgadmin_data:/var/lib/pgadmin
depends_on:
- postgres
- postgres-vector
networks:
- ai-agent-network
# Add Redis Commander for Redis management
redis-commander:
image: rediscommander/redis-commander:latest
container_name: ai-agent-redis-commander
environment:
- REDIS_HOSTS=local:redis:6379
ports:
- "8081:8081"
depends_on:
- redis
networks:
- ai-agent-network
volumes:
pgadmin_data:
driver: local