-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
89 lines (83 loc) · 1.86 KB
/
docker-compose.yml
File metadata and controls
89 lines (83 loc) · 1.86 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
services:
# iris
iris:
init: true
container_name: iris
build:
context: .
dockerfile: iris/Dockerfile
ports:
- 52774:52773
- 51774:1972
volumes:
- ./iris/shared:/shared
environment:
- ISC_DATA_DIRECTORY=/shared/durable
command: --check-caps false --ISCAgent false
# jupyter notebook
jupyter:
build:
context: .
dockerfile: jupyter/Dockerfile
container_name: jupyter
ports:
- "8888:8888"
environment:
- JUPYTER_ENABLE_LAB=yes
- JUPYTER_ALLOW_INSECURE_WRITES=true
volumes:
- ./jupyter:/home/jovyan
- ./data:/app/data
command: "start-notebook.sh --NotebookApp.token='' --NotebookApp.password=''"
# postgres
postgres:
build:
context: postgres
container_name: postgres
restart: always
environment:
POSTGRES_USER: testuser
POSTGRES_PASSWORD: testpassword
volumes:
- ./postgres/sql/dump.sql:/docker-entrypoint-initdb.d/dump.sql
ports:
- 5432:5432
# mysql
mysql:
build:
context: mysql
container_name: mysql
restart: always
command: --default-authentication-plugin=mysql_native_password
environment:
MYSQL_ROOT_PASSWORD: SYS
MYSQL_USER: testuser
MYSQL_PASSWORD: testpassword
MYSQL_DATABASE: test
volumes:
- ./mysql/sql/dump.sql:/docker-entrypoint-initdb.d/dump.sql
ports:
- 3306:3306
# oracle
oracle:
build:
context: oracle
container_name: oracle
environment:
ORACLE_SID: test
ORACLE_PDB: testPDB
ORACLE_PWD: testpassword
volumes:
- ./oracle/data:/opt/oracle/oradata
- ./oracle/sql:/opt/oracle/scripts/startup
ports:
- 1521:1521
# adminer
adminer:
container_name: adminer
image: adminer
restart: always
depends_on:
- postgres
ports:
- 8081:8080