You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
272 B
15 lines
272 B
3 years ago
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
db:
|
||
|
image: mcr.microsoft.com/mssql/server:latest
|
||
|
user: root
|
||
|
volumes:
|
||
|
- mssql_data:/var/opt/mssql/data
|
||
|
ports:
|
||
|
- 1433:1433
|
||
|
environment:
|
||
|
- ACCEPT_EULA=Y
|
||
|
- SA_PASSWORD=StrongPassw0rd!
|
||
|
volumes:
|
||
|
mssql_data:
|