diff options
| author | Andrew Guschin <guschin.drew@gmail.com> | 2022-04-12 12:42:41 +0400 |
|---|---|---|
| committer | Andrew Guschin <guschin.drew@gmail.com> | 2022-04-12 17:15:40 +0400 |
| commit | 31d4558821bfffbc07d5fae54fa063c019a6f7a9 (patch) | |
| tree | cec002050173931689d4e9235c3b4f6c0f9dc859 /mac-compose.yml | |
| parent | b14a35b894d5440c9d52a042bab6f7236ce2506f (diff) | |
Добавил десятое задание
Diffstat (limited to 'mac-compose.yml')
| -rw-r--r-- | mac-compose.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mac-compose.yml b/mac-compose.yml new file mode 100644 index 0000000..8db78a9 --- /dev/null +++ b/mac-compose.yml @@ -0,0 +1,13 @@ +version: '3' + +services: + sqledge-db: + container_name: sqledge-db + image: mcr.microsoft.com/azure-sql-edge:latest + ports: + - 1433:1433 + environment: + ACCEPT_EULA: Y + SA_PASSWORD: Datab@sed1337 + volumes: + - ./mssql-data:/var/opt/mssql |