PINE64

Full Version: Docker Mssql
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Anybody have any luck installing mssql Docker image. 

I can pull the image ok and create the container but the container does not display port 1433 used in the installation command.

I'm using ubuntu 16.04.04 and Docker 18.03.1-ce
(07-07-2018, 08:49 PM)Riverman Wrote: [ -> ]Anybody have any luck installing mssql Docker image. 

I can pull the image ok and create the container but the container does not display port 1433 used in the installation command.

I'm using ubuntu 16.04.04 and Docker 18.03.1-ce

Which docker image? Did you make sure it's an armhf/arm64 one?
$docker version
OS/Arch:  linux/arm64

$docker run hello-world
Hello from Docker!
No, not which version of docker! Which "mssql" image are you trying to install? Are you talking about Microsofts mssql, or did you mean mysql?

i.e.

docker pull microsoft/mssql-server-linux ( for https://hub.docker.com/r/microsoft/mssql-server-linux/)

or

docker pull mysql/mysql-server ( for https://hub.docker.com/r/mysql/mysql-server/ )


If it's mysql, you need a different image that is specifically for armhf or arm64 - such as https://hub.docker.com/r/ebspace/aarch64-mysql/

If it's mssql, I don't fancy your chances... being microsoft, it probably only works on amd64 (i.e. 64 bit PC architecture)...
docker pull microsoft/mssql-server-linux:2017-latest

Yeah my guess also it only works amd64
(07-09-2018, 07:30 PM)Riverman Wrote: [ -> ]docker pull microsoft/mssql-server-linux:2017-latest

Yeah my guess also it only works amd64

OK, so for mssql-server, I looked further into the requirements, and it comes down to the requirements for mssql-server-linux, which appears to be amd64 / x86-64 only, so I think you're out of luck for now. That and the fact when they talk about manual package install there are only x86-64 or amd64 packages. Sad