forked from 3mard/cloud-pricing-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
48 lines (43 loc) · 880 Bytes
/
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
version: '3'
services:
app:
build:
context: .
dockerfile: Dockerfile
image: infracost/cloud-pricing-api
ports:
- 4000:4000
environment:
- MONGODB_URI=mongodb://db:27017/cloudPricing
depends_on: [db]
volumes:
- ./data:/usr/src/app/data
networks:
- infracost
updater:
profiles: ["updater"]
build:
context: .
dockerfile: Dockerfile
image: infracost/cloud-pricing-api
environment:
- MONGODB_URI=mongodb://db:27017/cloudPricing
depends_on: [db]
volumes:
- ./data:/usr/src/app/data
networks:
- infracost
command: ["npm", "run", "update"]
db:
image: mongo:4.4
restart: unless-stopped
volumes:
- mongodb-data:/data/db
ports:
- 27017:27017
networks:
- infracost
volumes:
mongodb-data:
networks:
infracost: