-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
48 lines (48 loc) · 997 Bytes
/
docker-compose.yaml
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
services:
db:
hostname: ndbdb
build:
context: ./clean_database
dockerfile: database.Dockerfile
tty: true
init: true
ports:
- 5435:5432
restart: always
environment:
- POSTGRES_DB=neotoma
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=testpwd
- POSTGRES_HOST_AUTH_METHOD=trust
core_api:
build:
context: ./api_nodetest
dockerfile: api.Dockerfile
tty: true
init: true
ports:
- 3101:3001
depends_on:
- db
environment:
- RDS_HOSTNAME=ndbdb
- RDS_PORT=5432
- RDS_DATABASE=neotoma
- RDS_USERNAME=postgres
- RDS_PASSWORD=testpwd
tilia_api:
build:
context: ./tilia_api
dockerfile: tilia.Dockerfile
tty: true
init: true
ports:
- 3106:3006
depends_on:
- db
environment:
- RDS_HOSTNAME=ndbdb
- RDS_PORT=5432
- RDS_DATABASE=neotoma
- RDS_USERNAME=postgres
- RDS_PASSWORD=testpwd