-
Notifications
You must be signed in to change notification settings - Fork 47
/
docker-compose.yml
74 lines (68 loc) · 1.39 KB
/
docker-compose.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
version: "2.1"
services:
redis:
image: redis
command: redis-server
expose:
- 6379
db:
image: postgres
restart: always
environment:
- POSTGRES_USER=reopt
- POSTGRES_PASSWORD=reopt
- POSTGRES_DB=reopt
expose:
- 5432
celery:
build:
context: .
dockerfile: Dockerfile
image: base-api-image
command: >
"celery -A reopt_api worker -l info"
environment:
- APP_ENV=local
- SQL_HOST=db
- SQL_PORT=5432
- REDIS_HOST=redis
volumes:
- .:/opt/reopt
depends_on:
- db
- redis
- julia
django:
build:
context: .
dockerfile: Dockerfile
image: base-api-image
command: >
"python manage.py migrate
&& /opt/reopt/bin/wait-for-it.bash -t 0 julia:8081 -- python manage.py runserver 0.0.0.0:8000"
environment:
- APP_ENV=local
- SQL_HOST=db
- SQL_PORT=5432
- REDIS_HOST=redis
depends_on:
- db
- redis
- julia
ports:
- 8000:8000
volumes:
- .:/opt/reopt
julia:
container_name: julia_api
build:
context: julia_src/
dockerfile: Dockerfile
environment:
- XPRESS_JL_SKIP_LIB_CHECK=True
- XPRESS_INSTALLED=False
command: julia --project=/opt/julia_src http.jl
ports:
- "8081:8081"
volumes:
- ./julia_src:/opt/julia_src