forked from prisma/tiberius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (42 loc) · 956 Bytes
/
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
version: "3"
services:
mssql-2022:
build:
context: docker/
dockerfile: docker-mssql-2022.dockerfile
restart: always
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "<YourStrong@Passw0rd>"
ports:
- "1433:1433"
mssql-2019:
build:
context: docker/
dockerfile: docker-mssql-2019.dockerfile
restart: always
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "<YourStrong@Passw0rd>"
ports:
- "1433:1433"
mssql-2017:
build:
context: docker/
dockerfile: docker-mssql-2017.dockerfile
restart: always
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "<YourStrong@Passw0rd>"
ports:
- "1433:1433"
mssql-azure-sql-edge:
build:
context: docker/
dockerfile: docker-azure-sql-edge.dockerfile
restart: always
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "<YourStrong@Passw0rd>"
ports:
- "1433:1433"