forked from NREL/REopt_API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.nojulia.yml
69 lines (63 loc) · 1.26 KB
/
docker-compose.nojulia.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
version: "2"
services:
redis:
container_name: redis-nojul
image: redis
command: redis-server
expose:
- 6379
db:
container_name: db-nojul
image: postgres
restart: always
volumes:
- pgdata:/var/lib/postgresql/data
environment:
- POSTGRES_USER=reopt
- POSTGRES_PASSWORD=reopt
- POSTGRES_DB=reopt
expose:
- 5432
celery:
container_name: celery-nojul
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
- JULIA_HOST=host.docker.internal
volumes:
- .:/opt/reopt
depends_on:
- db
- redis
django:
container_name: django-nojul
build:
context: .
dockerfile: Dockerfile
image: base-api-image
command: >
"python manage.py migrate
&& python manage.py runserver 0.0.0.0:8000"
environment:
- APP_ENV=local
- SQL_HOST=db
- SQL_PORT=5432
- REDIS_HOST=redis
- JULIA_HOST=host.docker.internal
depends_on:
- db
- redis
ports:
- 8000:8000
volumes:
- .:/opt/reopt
volumes:
pgdata: