forked from eigent-ai/eigent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
48 lines (45 loc) · 1 KB
/
docker-compose.dev.yml
File metadata and controls
48 lines (45 loc) · 1 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
40
41
42
43
44
45
46
47
48
services:
# PostgreSQL Database
postgres:
image: postgres:15
container_name: eigent_postgres
restart: unless-stopped
environment:
POSTGRES_DB: eigent
POSTGRES_USER: postgres
POSTGRES_PASSWORD: 123456
POSTGRES_INITDB_ARGS: '--encoding=UTF-8 --lc-collate=C --lc-ctype=C'
ports:
- '5432:5432'
volumes:
- postgres_data:/var/lib/postgresql/data
networks:
- eigent_network
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U postgres -d eigent']
interval: 10s
timeout: 5s
retries: 5
# Redis
redis:
image: redis:7-alpine
container_name: eigent-redis-dev
restart: unless-stopped
ports:
- '6379:6379'
volumes:
- eigent_redis_data:/data
networks:
- eigent_network
healthcheck:
test: ['CMD', 'redis-cli', 'ping']
interval: 10s
timeout: 5s
retries: 5
volumes:
postgres_data:
driver: local
eigent_redis_data:
networks:
eigent_network:
driver: bridge