-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yml
45 lines (43 loc) · 1.17 KB
/
compose.yml
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
version: '2'
volumes:
postgres_data:
driver: local
services:
postgres:
image: postgres
# image: nimbustech/postgres-ssl:9.5
volumes:
- postgres_data:/var/lib/postgresql/data
environment:
POSTGRES_DB: keycloak
POSTGRES_USER: keycloak
POSTGRES_PASSWORD: password
local.keycloak.com:
build:
context: keycloak
environment:
DB_VENDOR: POSTGRES
DB_ADDR: postgres
DB_DATABASE: keycloak
DB_USER: keycloak
DB_PASSWORD: password
KEYCLOAK_USER: admin
KEYCLOAK_PASSWORD: Pa55w0rd
# Uncomment the line below if you want to specify JDBC parameters.
# The parameter below is just an example, and it shouldn't be used in production without knowledge.
# It is highly recommended that you read the PostgreSQL JDBC driver documentation in order to use it.
JDBC_PARAMS: "ssl=yes"
ports:
- 8080:8080
- 8443:8443
depends_on:
- postgres
# manageiq:
server:
privileged: true
build:
context: manageiq
ports:
- 443:443
depends_on:
- local.keycloak.com