-
Notifications
You must be signed in to change notification settings - Fork 13
/
docker-compose.dev.yml
52 lines (51 loc) · 1.11 KB
/
docker-compose.dev.yml
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
version: "2.2"
services:
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
volumes:
- .:/opt/ori
command: /opt/ori/bin/backend.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"
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