forked from jbogard/Respawn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
68 lines (66 loc) · 1.66 KB
/
docker-compose.yml
File metadata and controls
68 lines (66 loc) · 1.66 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
version: '3'
services:
postgres-db:
image: postgres
restart: always
environment:
POSTGRES_USER: docker
POSTGRES_PASSWORD: Password12!
ports:
- 8081:5432
mysql-db:
image: mysql:5.7
restart: always
environment:
MYSQL_ROOT_PASSWORD: testytest
ports:
- 8082:3306
# oracle:
# image: truevoly/oracle-12c
# restart: always
# ports:
# - 8080:8080
# - 10521:1521
informix:
image: ibmcom/informix-developer-database:14.10.FC5DE
restart: always
tty: true
user: root
environment:
LICENSE: accept
ONCONFIG_FILE: onconfig
RUN_FILE_PRE_INIT: my_post.sh
ports:
- 9088:9088
- 9089:9089
- 27017:27017
- 27018:27018
- 27883:27883
privileged: true
volumes:
- ./informix-server:/opt/ibm/config
db2:
image: icr.io/db2_community/db2:latest
restart: always
tty: true
environment:
TO_CREATE_SAMPLEDB: false
UPDATEAVAIL: NO
ENABLE_ORACLE_COMPATIBILITY: false
BLU: false
DBNAME: SAMPLEDB
DB2INST1_PASSWORD: password
DB2INSTANCE: db2inst1
LICENSE: accept
DBPORT: 50000
STORAGE_DIR: /database
ports:
- 50000:50000
privileged: true
volumes:
- ./db2-server:/database
adminer:
image: adminer
restart: always
ports:
- 8083:8083