-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
41 lines (34 loc) · 1.17 KB
/
docker-compose.dev.yml
File metadata and controls
41 lines (34 loc) · 1.17 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
# ─────────────────────────────────────────────────────────────────────────────
# OpenFarm — Development Docker Compose
#
# Usage:
# docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build
#
# Exposes service ports to localhost for local development and debugging.
# Not used in production — see docker-compose.prod.yml instead.
# ─────────────────────────────────────────────────────────────────────────────
services:
db:
ports:
- "5432:5432"
redis:
ports:
- "6379:6379"
minio:
ports:
- "9000:9000"
- "9001:9001"
api:
ports:
- "8000:8000"
environment:
MINIO_PUBLIC_ENDPOINT: localhost:9000
tiler:
ports:
- "8080:80"
ml-processor:
environment:
DATABASE_URL_SYNC: ${DATABASE_URL_SYNC:-postgresql://openfarm:openfarm_dev@db:5432/openfarm}
web:
ports:
- "3000:3000"