-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (35 loc) · 1.1 KB
/
docker-compose.yml
File metadata and controls
38 lines (35 loc) · 1.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
services:
postgres:
image: pgvector/pgvector:pg16
container_name: alicebot-postgres
environment:
POSTGRES_USER: ${ALICEBOT_COMPOSE_POSTGRES_USER:-alicebot_admin}
POSTGRES_PASSWORD: ${ALICEBOT_COMPOSE_POSTGRES_PASSWORD:-alicebot_admin}
POSTGRES_DB: ${ALICEBOT_COMPOSE_POSTGRES_DB:-alicebot}
ALICEBOT_APP_USER: ${ALICEBOT_COMPOSE_APP_USER:-alicebot_app}
ALICEBOT_APP_PASSWORD: ${ALICEBOT_COMPOSE_APP_PASSWORD:-alicebot_app}
ports:
- "127.0.0.1:5432:5432"
volumes:
- postgres-data:/var/lib/postgresql/data
- ./infra/postgres/init:/docker-entrypoint-initdb.d:ro
redis:
image: redis:7-alpine
container_name: alicebot-redis
ports:
- "127.0.0.1:6379:6379"
minio:
image: minio/minio:RELEASE.2025-02-28T09-55-16Z
container_name: alicebot-minio
command: server /data --console-address ":9001"
environment:
MINIO_ROOT_USER: alicebot
MINIO_ROOT_PASSWORD: alicebot-secret
ports:
- "127.0.0.1:9000:9000"
- "127.0.0.1:9001:9001"
volumes:
- minio-data:/data
volumes:
postgres-data:
minio-data: