-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcompose.yaml
More file actions
30 lines (28 loc) · 794 Bytes
/
compose.yaml
File metadata and controls
30 lines (28 loc) · 794 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
services:
mysql:
image: mysql:latest
ports:
- 13306:3306
environment:
MYSQL_ROOT_PASSWORD: shield
MYSQL_USER: shield
MYSQL_PASSWORD: shield
MYSQL_DATABASE: shield
postgresql:
image: postgres:latest
ports:
- 15432:5432
environment:
POSTGRES_USER: shield
POSTGRES_PASSWORD: shield
POSTGRES_DB: shield
keycloak:
image: quay.io/keycloak/keycloak:latest
command: start-dev --import-realm
ports:
- 18080:8080
volumes:
- ./keycloak:/opt/keycloak/data/import
environment:
KC_BOOTSTRAP_ADMIN_USERNAME: shield
KC_BOOTSTRAP_ADMIN_PASSWORD: shield