Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move from Azure SQL Edge to native SQL Server #435

Merged
merged 4 commits into from
Sep 20, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/getting-started/server/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ To do this, run

```bash
docker compose --profile mssql down
docker volume rm bitwardenserver_edgesql_dev_data
docker volume rm bitwardenserver_mssql_dev_data
```

After that, rerun the docker compose command from Step 5.
Expand All @@ -134,10 +134,10 @@ After that, rerun the docker compose command from Step 5.

### SQL Server

In order to support ARM based development environments such as the M1 Macs, we use the
[Azure SQL Edge](https://hub.docker.com/_/microsoft-azure-sql-edge) docker container instead of a
normal [Microsoft SQL Server](https://hub.docker.com/_/microsoft-mssql-server) container. It behaves
mostly identical to a regular SQL Server instance and runs on port 1433.
For ARM based development environments such as the M1 Macs, we use the
[Microsoft SQL Server](https://hub.docker.com/_/microsoft-mssql-server) docker container with
`linux/amd64` platform emulation. It behaves identical to a SQL Server instance without emulation
and runs on port 1433.
mzieniukbw marked this conversation as resolved.
Show resolved Hide resolved

You can connect to it using Azure Data Studio using the following credentials:

Expand Down