From 1fde13f9f46746ee53c863cb23c0ce24ca3b9506 Mon Sep 17 00:00:00 2001 From: Guillaume Lours Date: Fri, 5 Nov 2021 21:51:30 +0100 Subject: [PATCH] add support of arm64 architecture for aspnet-mssql sample Signed-off-by: Guillaume Lours --- aspnet-mssql/README.md | 9 ++++++++- aspnet-mssql/docker-compose.yaml | 5 ++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/aspnet-mssql/README.md b/aspnet-mssql/README.md index 6228cc8..6287cd3 100644 --- a/aspnet-mssql/README.md +++ b/aspnet-mssql/README.md @@ -20,7 +20,10 @@ services: ports: - 80:80 db: - image: microsoft/mssql-server-linux + # mssql server image isn't available for arm64 architecture, so we use azure-sql instead + image: mcr.microsoft.com/azure-sql-edge:1.0.4 + # If you really want to use MS SQL Server, uncomment the following line + #image: mcr.microsoft.com/mssql/server ... ``` The compose file defines an application with two services `web` and `db`. The image for the web service is built with the Dockerfile inside the `app` directory (build parameter). @@ -28,6 +31,10 @@ The compose file defines an application with two services `web` and `db`. The im When deploying the application, docker-compose maps the container port 80 to port 80 of the host as specified in the file. Make sure port 80 on the host is not being used by another container, otherwise the port should be changed. +> ℹ️ **_INFO_** +> For compatibility purpose between `AMD64` and `ARM64` architecture, we use Azure SQL Edge as database instead of MS SQL Server. +> You still can use the MS SQL Server image by uncommenting the following line in the Compose file +> `#image: mcr.microsoft.com/mssql/server` ## Deploy with docker-compose diff --git a/aspnet-mssql/docker-compose.yaml b/aspnet-mssql/docker-compose.yaml index 89a39f4..3fe4acd 100644 --- a/aspnet-mssql/docker-compose.yaml +++ b/aspnet-mssql/docker-compose.yaml @@ -7,7 +7,10 @@ services: environment: ACCEPT_EULA: "Y" SA_PASSWORD: example_123 - image: mcr.microsoft.com/mssql/server + # mssql server image isn't available for arm64 architecture, so we use azure-sql instead + image: mcr.microsoft.com/azure-sql-edge:1.0.4 + # If you really want to use MS SQL Server, uncomment the following line + #image: mcr.microsoft.com/mssql/server restart: always healthcheck: test: ["CMD-SHELL", "/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P example_123 -Q 'SELECT 1' || exit 1"]