This repository was archived by the owner on Jun 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
75 lines (68 loc) · 1.62 KB
/
docker-compose.yml
File metadata and controls
75 lines (68 loc) · 1.62 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
69
70
71
72
73
74
75
MongoDB-MIN:
image: mongo:3.2
container_name : test_lumber_mongo_min
ports:
- "27015:27017"
volumes:
- ./data/mongodb/3.2:/var/lib/mongodb
MongoDB-MAX:
image: mongo:4.2
container_name : test_lumber_mongo_max
ports:
- "27016:27017"
volumes:
- ./data/mongodb/4.2:/var/lib/mongodb
PostgreSQL-MIN:
image : postgres:9.4
container_name : test_lumber_postgres_min
ports :
- "54368:5432"
environment:
- POSTGRES_DB=lumber-sequelize-test
- POSTGRES_USER=forest
- POSTGRES_PASSWORD=secret
PostgreSQL-MAX:
image : postgres:12.2
container_name : test_lumber_postgres_max
ports :
- "54369:5432"
environment:
- POSTGRES_DB=lumber-sequelize-test
- POSTGRES_USER=forest
- POSTGRES_PASSWORD=secret
MySQL-MIN:
image: mysql:5.6
container_name: test_lumber_mysql_min
environment:
MYSQL_ROOT_PASSWORD: secret
MYSQL_DATABASE: lumber-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports:
- "127.0.0.1:8998:3306"
MySQL-MAX:
image: mysql:8.0
container_name: test_lumber_mysql_max
environment:
MYSQL_ROOT_PASSWORD: secret
MYSQL_DATABASE: lumber-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports:
- "127.0.0.1:8999:3306"
MS-SQL-MIN:
image: mcr.microsoft.com/mssql/server:2017-latest
container_name: test_lumber_mssql_min
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "forest2019:"
ports:
- "1431:1433"
MS-SQL-MAX:
image: mcr.microsoft.com/mssql/server:2019-latest
container_name: test_lumber_mssql_max
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "forest2019:"
ports:
- "1432:1433"