-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
58 lines (57 loc) · 1.25 KB
/
docker-compose.dev.yml
File metadata and controls
58 lines (57 loc) · 1.25 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
49
50
51
52
53
54
55
56
57
58
version: "2.2"
services:
frontend:
build:
context: .
dockerfile: ocd_frontend/Dockerfile.dev
ports:
- "5000:5000"
backend:
build:
context: .
dockerfile: ocd_backend/Dockerfile.dev
ports:
- "81:5555"
environment:
- "CLASSIFIER_HOST=localhost"
- RELEASE_STAGE=development
- PROXY_HOST=host.docker.internal
- PROXY_PORT=8090
command: /opt/ori/bin/start_backend.dev.sh
mem_limit: 1g
loader:
build:
context: .
dockerfile: ocd_backend/Dockerfile.dev
environment:
- RELEASE_STAGE=development
- PROXY_HOST=host.docker.internal
- PROXY_PORT=8090
mem_limit: 1g
elastic:
ports:
- "9200:9200"
environment:
- "ES_JAVA_OPTS=-Xms4g -Xmx4g"
postgres:
ports:
- "5432:5432"
pgadmin:
image: "dpage/pgadmin4:latest"
ports:
- "8081:80"
environment:
- "PGADMIN_DEFAULT_EMAIL=noreply@argu.co"
- "PGADMIN_DEFAULT_PASSWORD=pgadmin"
volumes:
- pgadmindata:/var/lib/pgadmin
depends_on:
postgres:
condition: service_started
theme_classifier:
image: "openstatefoundation/ori-theme-classifier:v1.0.0"
ports:
- "8050:5000"
volumes:
pgadmindata:
driver: local