-
Notifications
You must be signed in to change notification settings - Fork 14
/
docker-compose.yaml
52 lines (51 loc) · 1.82 KB
/
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
49
50
51
52
version: "3.7"
services:
#############################################################################################
### Mongo ###
#############################################################################################
mongo:
image: mongo:3.6
container_name: nrpti-mongo
tty: true
restart: always
volumes:
- ./mongoSeed/init:/docker-entrypoint-initdb.d
ports:
- 27017:27017
networks:
- nrpti
healthcheck:
test: echo 'db.runCommand({serverStatus:1}).ok' | mongo admin -u ${MONGO_USERNAME:-nrpti-admin} -p ${MONGO_PASSWORD:-nrpti-admin} --quiet | grep 1
interval: 20s
timeout: 30s
retries: 5
start_period: 120s
#############################################################################################
### API ###
#############################################################################################
api:
container_name: nrpti-api
build:
context: ./api
dockerfile: Dockerfile
networks:
- nrpti
environment:
- MONGODB_SERVICE_HOST=mongo
ports:
- 3000:3000
# healthcheck:
# test: curl localhost:${PORT:-3000}/api/health | grep 'API is healthy and ready'
# interval: 20s
# timeout: 30s
# retries: 5
# start_period: 20s
depends_on:
mongo:
condition: service_healthy
#############################################################################################
### Network ###
#############################################################################################
networks:
nrpti:
driver: "bridge"