-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
28 lines (28 loc) · 806 Bytes
/
docker-compose.yml
File metadata and controls
28 lines (28 loc) · 806 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
services:
hardware-security-controller:
image: piandarduinoguy/hardware-security-controller:20220427
privileged: true
environment:
SECURITY_MICRO_SERVICE_HOST_IP: security-micro-service
SECURITY_MICRO_SERVICE_HOST_PORT: 8082
PASSWORD: 159
LOGGING_FILE_DIRECTORY: /logs
networks:
- security-network
restart: always
alerter:
image: piandarduinoguy/alerter:20220427
privileged: true
environment:
ALERTER_LOGGING_FILE_DIRECTORY: /logs
ALERTER_RABBITMQ_HOST: rabbitmq
ALERTER_SECURITY_CONFIG_QUEUE_NAME: alerter.security.config
ALERTER_EXCHANGE_NAME: fanout_exchange
networks:
- security-network
restart: always
networks:
security-network:
driver: overlay
name: security-network
external: true