forked from k1LoW/tbls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
58 lines (57 loc) · 1.18 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
49
50
51
52
53
54
55
56
57
58
version: '3.4'
services:
postgres95:
image: postgres:9.5
restart: always
ports:
- "55432:5432"
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=pgpass
- POSTGRES_DB=testdb
postgres:
image: postgres:13.1
restart: always
ports:
- "55413:5432"
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=pgpass
- POSTGRES_DB=testdb
mysql56:
image: mysql:5.6
restart: always
ports:
- "33306:3306"
environment:
- MYSQL_DATABASE=testdb
- MYSQL_ROOT_PASSWORD=mypass
mysql:
image: mysql:8
restart: always
ports:
- "33308:3306"
environment:
- MYSQL_DATABASE=testdb
- MYSQL_ROOT_PASSWORD=mypass
mariadb:
image: mariadb:10.5
restart: always
ports:
- "33309:3306"
environment:
- MYSQL_DATABASE=testdb
- MYSQL_ROOT_PASSWORD=mypass
mssql:
image: mcr.microsoft.com/mssql/server:2017-latest
restart: always
ports:
- "11433:1433"
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=MSSQLServer-Passw0rd
dynamodb:
image: amazon/dynamodb-local
restart: always
ports:
- "18000:8000"