forked from hygieia/hygieia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (37 loc) · 852 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
42 lines (37 loc) · 852 Bytes
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
# Help: rename the adject docker-compose.override.example.yml file to docker-compose.override.yml
# then in the override file uncomment the environment tag for the collectors you want to
# run. Then add the environment vars you want to use.
version: '3'
services:
db:
image: mongo:latest
ports:
- "27017:27017"
volumes:
- "db-data:/data/db"
db-setup:
build: db
depends_on:
- db
api-audit:
build: api-audit
image: hygieia-api-audit
depends_on:
- db-setup
ports:
- "8081:8080"
ui:
build: UI
image: hygieia-ui
depends_on:
- api
ports:
- "3000:80"
artifactory-artifact-collector:
build: collectors/artifact/artifactory
image: hygieia-artifactory-artifact-collector
depends_on:
- db-setup
volumes:
db-data:
certs: