forked from trustification/trustification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose-guac.yaml
77 lines (72 loc) · 2.58 KB
/
compose-guac.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
version: "3"
services:
postgres:
image: docker.io/library/postgres:16
environment:
POSTGRES_USER: guac
POSTGRES_DB: guac
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- "5432:5432"
expose:
- "5432"
#volumes:
# - ./container_files/pg:/var/lib/postgresql/data${SELINUX_VOLUME_OPTIONS}
# - ./container_files/guac/init.sql:/docker-entrypoint-initdb.d/init.sql${SELINUX_VOLUME_OPTIONS}
healthcheck:
test: ["CMD-SHELL", "pg_isready -U guac -d guac"]
start_period: 10s
interval: 10s
timeout: 10s
retries: 5
guac-collectsub:
image: $GUAC_IMAGE
command: "/opt/guac/guaccsub --csub-listen-port $GUAC_CSUB_PORT"
working_dir: /guac
restart: on-failure
expose:
- "$GUAC_CSUB_PORT"
ports:
- "$GUAC_CSUB_PORT:$GUAC_CSUB_PORT"
volumes:
- ./container_files/guac:/guac${SELINUX_VOLUME_OPTIONS}
healthcheck:
test: ["CMD", "wget", "--spider", "http://localhost:$GUAC_CSUB_PORT"]
interval: 10s
timeout: 10s
retries: 3
start_period: 5s
guac-graphql:
image: $GUAC_IMAGE
depends_on:
postgres:
condition: service_healthy
command: "/opt/guac/guacgql --gql-listen-port $GUAC_API_PORT --gql-backend=ent --db-address=postgres://guac@postgres:5432/guac?sslmode=disable --db-driver=postgres --db-debug=true --gql-debug=true" #--db-migrate=false
working_dir: /guac
restart: on-failure
expose:
- "$GUAC_API_PORT"
ports:
- "$GUAC_API_PORT:$GUAC_API_PORT"
volumes:
- ./container_files/guac:/guac${SELINUX_VOLUME_OPTIONS}
healthcheck:
test: ["CMD", "wget", "--spider", "http://localhost:$GUAC_API_PORT"]
interval: 10s
timeout: 10s
retries: 3
start_period: 5s
bombastic-collector:
image: $GUAC_IMAGE
command: "/opt/guac/guacone collect s3 --poll --s3-mp kafka --s3-url http://minio:9000 --s3-bucket bombastic --s3-queues sbom-indexed --s3-mp-endpoint kafka:9094 --gql-addr http://guac-graphql:$GUAC_API_PORT/query --csub-addr guac-collectsub:$GUAC_CSUB_PORT"
environment:
AWS_ACCESS_KEY_ID: admin
AWS_SECRET_ACCESS_KEY: password
AWS_REGION: eu-west-1
vex-collector:
image: $GUAC_IMAGE
command: "/opt/guac/guacone collect s3 --poll --s3-mp kafka --s3-url http://minio:9000 --s3-bucket vexination --s3-queues vex-indexed --s3-mp-endpoint kafka:9094 --gql-addr http://guac-graphql:$GUAC_API_PORT/query --csub-addr guac-collectsub:$GUAC_CSUB_PORT"
environment:
AWS_ACCESS_KEY_ID: admin
AWS_SECRET_ACCESS_KEY: password
AWS_REGION: eu-west-1