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
42 lines (40 loc) · 943 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (40 loc) · 943 Bytes
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
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:12.10.FC11DE
restart: always
environment:
LICENSE: accept
ports:
- 9088:9088
- 9089:9089
- 27017:27017
- 27018:27018
- 27883:27883
privileged: true
adminer:
image: adminer
restart: always
ports:
- 8083:8083