PINE64
Docker Mssql - Printable Version

+- PINE64 (https://forum.pine64.org)
+-- Forum: ROCK64 (https://forum.pine64.org/forumdisplay.php?fid=85)
+--- Forum: Linux on Rock64 (https://forum.pine64.org/forumdisplay.php?fid=88)
+--- Thread: Docker Mssql (/showthread.php?tid=6261)



Docker Mssql - Riverman - 07-07-2018

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


RE: Docker Mssql - pfeerick - 07-08-2018

(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?


RE: Docker Mssql - Riverman - 07-08-2018

$docker version
OS/Arch:  linux/arm64

$docker run hello-world
Hello from Docker!


RE: Docker Mssql - pfeerick - 07-09-2018

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)...


RE: Docker Mssql - Riverman - 07-09-2018

docker pull microsoft/mssql-server-linux:2017-latest

Yeah my guess also it only works amd64


RE: Docker Mssql - pfeerick - 07-09-2018

(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