-
Notifications
You must be signed in to change notification settings - Fork 136
/
docker-compose.yml
48 lines (46 loc) · 1.1 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
47
48
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
adminer:
image: adminer
restart: always
ports:
- 8083:8083