-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
43 lines (40 loc) · 1.1 KB
/
Copy pathdocker-compose.dev.yml
File metadata and controls
43 lines (40 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
39
40
41
42
43
# Dev infrastructure only. The API and worker run locally via `uv run` for hot
# reload. Buckets are created by `rc seed` (in code), not here.
services:
redis:
image: redis:7-alpine
ports: ['6379:6379']
healthcheck:
test: ['CMD', 'redis-cli', 'ping']
interval: 5s
timeout: 3s
retries: 5
postgres:
image: postgres:16-alpine
environment:
POSTGRES_USER: redcell
POSTGRES_PASSWORD: redcell
POSTGRES_DB: redcell
ports: ['5432:5432']
volumes: ['redcell_pg:/var/lib/postgresql/data']
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U redcell']
interval: 5s
timeout: 3s
retries: 5
minio:
image: minio/minio:RELEASE.2025-04-22T22-12-26Z
command: server /data --console-address ":9001"
environment:
MINIO_ROOT_USER: minioadmin
MINIO_ROOT_PASSWORD: minioadmin
ports: ['9000:9000', '9001:9001']
volumes: ['redcell_minio:/data']
healthcheck:
test: ['CMD-SHELL', 'mc ready local || exit 1']
interval: 5s
timeout: 3s
retries: 5
volumes:
redcell_pg: {}
redcell_minio: {}