Containers

List, stop, start, restart, inspect, remove, view logs, enter shell of containers from your mobile

containers

Images

List, inspect and remove image from your mobile

images

Auth via pass

Log-in to your server via password

user authentication

Auth via ssh

Log-in to your server via ssh key

ssh authentication

Create containers

Check the creation progress of your newly container

create containers

Build images

Check the build progress of your Dockerfile

create images

Multiple servers

Add and manage multiple servers

multiple servers

Logs

View logs of containers in real time

logs

F.A.Q

Why I can not connect with non-root users?

The docker commands are executed by the app without sudo so you will need to add your non-root user to the docker group with the following commands:
sudo usermod -aG docker $USER sudo reboot

How to connect to MAC docker desktop?

Since docker for MacOS is setup on different path, change it on my app by going to server information view, at the end of the page there is "Advance Settings" and set it to:
/usr/local/bin/docker

How to connect to Synology server?

If non-root user, then add user to docker group on your server:
sudo synogroup --add docker $USER

Since docker for synology is setup on different path, change it on my app by going to server information view, at the end of the page there is "Advance Settings" and set it to:
# for synology version 7.1.xxx or lower /volume1/@appstore/Docker/usr/bin/docker # for synology version 7.2.xxx or higher /volume1/@appstore/ContainerManager/usr/bin/docker

How to connect to QNAP server?

If non-root user, then add user to docker group on your server:
sudo addgroup $USER administrators

Since docker for QNAP is setup on different path, change it on my app by going to server information view, at the end of the page there is "Advance Settings" and set it to:
/share/CACHEDEV1_DATA/.qpkg/container-station/bin/docker