forked from bcgov/eDivorce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (45 loc) · 1.06 KB
/
Copy pathdocker-compose.yml
File metadata and controls
50 lines (45 loc) · 1.06 KB
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
version: "3.7"
services:
# Antivirus
antivirus:
container_name: edivorce-antivirus
hostname: antivirus
build: https://github.com/bcgov/clamav.git
ports:
- "3310:3310"
restart: always
# Redis Server
redis:
container_name: edivorce-redis
image: redis
command: redis-server --requirepass admin
ports:
- "6379:6379"
volumes:
- data-redis:/data
restart: always
# Weasyprint (PDF generator)
weasyprint:
container_name: edivorce-weasyprint
hostname: weasyprint
image: aquavitae/weasyprint
ports:
- "5005:5001"
restart: always
# Keycloak
keycloak:
container_name: edivorce-keycloak
image: jboss/keycloak:9.0.3
environment:
DB_VENDOR: H2
KEYCLOAK_USER: admin
KEYCLOAK_PASSWORD: admin
KEYCLOAK_IMPORT: /tmp/realm-export.json
volumes:
- ./conf/keycloak/realm-export.json:/tmp/realm-export.json
ports:
- 8081:8080
command: ["-Dkeycloak.profile.feature.upload_scripts=enabled"]
restart: always
volumes:
data-redis: