-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.override.yml.example
51 lines (46 loc) · 1.56 KB
/
docker-compose.override.yml.example
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
services:
portal:
ports:
- '8080:80'
volumes:
- ./portal:/portal:cached
# Uncomment these volumes when you would like to override these paths
# - ./portal-files/apache2/portal.conf.d:/etc/apache2/portal.conf.d
# - ./portal-files/apache2/vhost.conf:/etc/apache2/sites-enabled/000-default.conf
# - ./portal-files/apache2/portal.conf:/etc/apache2/sites-enabled/portal.conf
environment:
XDEBUG_ENABLED: "true"
#AUTOGENERATE_MESH_API_KEY: "false"
mesh:
ports:
- '8081:8080'
environment:
MESH_INITIAL_ADMIN_PASSWORD_FORCE_RESET: "false"
MESH_AUTH_KEYSTORE_PASS: "changemeplease"
MESH_INITIAL_ADMIN_PASSWORD: "admin"
cms:
ports:
- '8082:80'
environment:
LICENSEKEY: TH1S-15N0-T4V4-L1DK-3YKT-HXBY-D34D-B33F
volumes:
- ./cms/dumps:/Node/etc/dumps
- ./portal/public/static/demo-assets/files:/Node/node/content/packages/demo-assets/files:ro
# Optional: Language Tool
# To enable, please comment out the entrypoint line!
languagetool:
entrypoint: /bin/true # Disable service startup
# Optional: Keycloak
# To enable, please comment out the entrypoint line!
keycloak:
ports:
- '8083:8080'
environment:
DB_USER: keycloak
DB_PASSWORD: L3FAuMMKiNUsCEjS92SjMcQy
KEYCLOAK_USER: admin
KEYCLOAK_PASSWORD: "changemeplease"
KEYCLOAK_IMPORT: /tmp/reference_realm-export.json
volumes:
- ./keycloak/reference_realm-export.json:/tmp/reference_realm-export.json:ro
entrypoint: /bin/true # Disable service startup