forked from Kononnable/typeorm-model-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (44 loc) · 1014 Bytes
/
docker-compose.yml
File metadata and controls
49 lines (44 loc) · 1014 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
43
44
45
46
47
48
49
version: '2'
services:
# mysql
mysql:
image: "mysql:5.7.19"
container_name: "typeorm-mg-mysql"
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: "!Passw0rd"
# mariadb
mariadb:
image: "mariadb:10.2.9"
container_name: "typeorm-mg-mariadb"
ports:
- "3307:3306"
environment:
MYSQL_ROOT_PASSWORD: "!Passw0rd"
# postgres
postgres:
image: "postgres:10.0"
container_name: "typeorm-mg-postgres"
ports:
- "5432:5432"
environment:
POSTGRES_PASSWORD: "!Passw0rd"
# mssql
mssql:
image: "microsoft/mssql-server-linux:2017-CU4"
container_name: "typeorm-mg-mssql"
ports:
- "1433:1433"
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "!Passw0rd"
# oracle
# oracle:
# image: "store/oracle/database-enterprise:12.2.0.1-slim"
# container_name: "typeorm-mg-oracle"
# ports:
# - "1521:1521"
# environment:
# DB_SID: "ORCLCDB"
# SYS_PASSWORD: "Oradoc_db1"