-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (44 loc) · 1.04 KB
/
docker-compose.yml
File metadata and controls
52 lines (44 loc) · 1.04 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
51
version: '3.1'
services:
mssql:
image: mcr.microsoft.com/mssql/server
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=yourStrong(!)Password
maria:
image: mariadb
environment:
- MYSQL_ROOT_PASSWORD=example
db:
image: postgres
environment:
- POSTGRES_PASSWORD=example
# ports:
# - 5432:5432
volumes:
- ./init-user-db.sh:/docker-entrypoint-initdb.d/init-user-db.sh
- ./bibmon.sql:/docker-entrypoint-initdb.d/z_bibmon.sql
pgadmin:
image: dpage/pgadmin4
environment:
- PGADMIN_DEFAULT_EMAIL=markussk@kth.se
- PGADMIN_DEFAULT_PASSWORD=password12
ports:
- 80:80
depends_on:
- db
pgloader:
image: dimitri/pgloader:ccl.latest
# command: bash -c "sleep 10 && pgloader /tmp/bibmon.db postgresql://postgres:example@db/"
volumes:
- ./bibmon.db:/tmp/bibmon.db
depends_on:
- db
zeppelin:
image: apache/zeppelin:0.8.2
environment:
- ZEPPELIN_ADDR=0.0.0.0
depends_on:
- db
ports:
- 10000:8080