According to the official Docker installation tutorial, whether on Windows, Linux or Mac systems, docker installation is very simple.
❗️ Make sure the Docker is installed. Follow these steps
- Here is the detailed installation and operation demonstration video
-
Open the Shell (Windows) or Terminal (Mac/Linux) of the device on which the Docker is installed.
- Windows: Press
Win + R
, typecmd
and pressEnter
- Mac : Press
Command + S
typeTerminal
, and pressEnter
. - Linux: Press
Ctrl + Alt + T
.
- Windows: Press
-
Run the following command in the Shell (Windows) or Terminal (Mac/Linux).
docker pull liangbeam/aquags #Pull the specified image for AquaGS docker run -it -v d:\data\:/root/Desktop/Share/ -d --name aquags-vnc -p 5901:22 -p 6080:80 -p 5902:5900 -e VNC_PASSWORD=1234 liangbeam/aquags #Run the following command to create a container
Commands
(Bold as can be customized)Explanation default -v d:\data : /home/data Share the host folder to the container Share the host folder D:\data\ to the /root/Desktop/Share/ folder in the docker container -e VNC_PASSWORD=1234 Password 1234 -p 6080:80 NOVNC_port 6080 -p 5902:5900 VNC port 5902 --name aquags-vnc container name aquags-vnc -p 5901:22 SSH port 5901
If you get the following error:
docker: Error response from daemon: user declined directory sharing
You have to add your the folder path of the host (defult as D:\data\) to Docker Filesharing. Go to docker dashboard -> settings ->Resources -> FileSharing. Add required folder and hit Apply & Restart.
-
Input the following IP address in the browser
<your_ip>:<NOVNC_port>
Replace
<your_ip>
with the ip for the device on which the Docker is installed. Replace<NOVNC_port>
withNOVNC_port
(default as 6080)- Exsample: My local IP address is
<192.168.1.12>
, and theNOVNC_port
is seted as default6080
. So my input is<192.168.1.12:6080>
Enter the password (default as 1234), then you can access the desktop for container in browser.
- Exsample: My local IP address is
-
AquaGS_GUI is already in
/root/Desktop/AquaGS_GUI_release/
. You need to run it in that directory by run the command on the Terminal(or LXTerminal).cd /root/Desktop/AquaGS_GUI_release/ ./AquaGS_GUI
Then enjoy AquaGS.😃
Copy the host files/folders to the aquags-vnc container
docker cp d:\data\ aquags-vnc:/home/data/