The Docker image with pre-installed MemSQL Studio (official release notes).
Run the image:
$ docker run --name memsql-studio -p 8080:8080/tcp -d artum/memsql-studio:latest
To enter to the MemSQL Studio, open in the browser:
http://localhost:8080
There is predefined connection to localhost:3306
that you can use or create a new one.
The username and the password are for your MemSQL cluster super-user.
You need to mount storage to your container in order to keep the MemSQL Studio settings stored between sessions.
To mount you local folder /tmp/memsql-studio
run the following docker command:
$ docker run --name memsql-studio -v /tmp/memsql-studio:/var/lib/memsql-studio -p 8080:8080/tcp -d artum/memsql-studio:latest