-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
46 lines (41 loc) · 1.13 KB
/
docker-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
46
version: "3.7"
services:
#############################################################################
# tranSMART Postgres database
#############################################################################
db:
image: lukaszimmermann/transmart-core-thehyve-postgres_test:v1
ports:
- ${databaseHostPort}:5432 # Makes Postgres available to the outside world
adminer:
image: adminer
depends_on:
- db
ports:
- ${adminerHostPort}:8080
# keycloak:
# image: jboss/keycloak:5.0.0
# environment:
# KEYCLOAK_USER: admin
# KEYCLOAK_PASSWORD: admin
# DB_VENDOR: postgres
# DB_ADDR: db
# DB_PORT: 5432
# DB_DATABASE: keycloak # This is the default of the image
# DB_USER: keycloak # This is the default of the image
# DB_PASSWORD: password # This is the default
#
#
# solr:
# image: guywithnose/solr:4.5.1
# ports:
# - ${solrHostPort}:8983
transmart-server:
image: lukaszimmermann/transmart-core-thehyve-server:v1
depends_on:
- db
environment:
PGHOST: db
PGPORT: 5432
ports:
- 8080:8080