Installation SQL SERVER , Docker on MACOS Intel . M1/m2 read description please.

Опубликовано: 04 Октябрь 2024
на канале: Rebels Developer
456
0

You can get SQL SERVER fo docker from here .

https://hub.docker.com/_/microsoft-ms...

to start is just accept de eula and create new password

(Intel)
docker run -e "ACCEPT_EULA=Y" -e MSSQL_SA_PASSWORD=RebelsWays2023 -p 1433:1433 -d mcr.microsoft.com/mssql/server:latest

M1 /M2

Click at the setting docker
Click at the bottom features in development
Tick the rosseta word

Use Rosetta for x86/amd64 emulation on Apple Silicon
Turns on Rosetta to accelerate x86/amd64 binary emulation on Apple Silicon. Note - you must have the Virtualization Framework enabled (via the toggle on the General panel).

docker run -e "ACCEPT_EULA=Y" -e MSSQL_SA_PASSWORD=RebelsWays2023 -p 1433:1433 -d mcr.microsoft.com/mssql/server:latest

** ignore the error
WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested