Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Sign up for one account at Docker Hub:

https://hub.docker.com/signup

 

For Windows (Professional/Enterprise) and mac users, download and install the Docker Desktop here:

...


How to set the shared folder such that the data generated in Docker container will be saved to your actual disk (slight slow down the running speed of container):

For Windows User: 

  • Go to Docker Desktop settings and select the shared drives, tick the drive D and click Apply, you might need your administrator password
  • Create a new folder in your D volume with the name "Docker-data"
  • Then run this in PowerShell: "docker run -it -e DISPLAY=host.docker.internal:0 -v d:/Docker-data:/MercuryTrunk/MercuryBuild haoutwente/mercurytrunk"
  • Now in the container the folder "MercuryTrunk/MercuryBuild" is mapped and all the data generated there will be copied to "d:/Docker-data"

 

For Mac User: 

 

  • Go to Docker Desktop Preferences and select the tab "File Sharing", check if directory "/Users" is already there, if not, add it with your admin password
  • Create a new folder somewhere in your daily directory, e.g. in your Downloads or Desktop folder with the name "Docker-data"
  • open a new terminal, type in "cd Downloads/Docker-data", then type in "pwd", this will give you the $ROUTE$ to the Docker-data, e.g. $/Users/hao/Downloads/Docker-data$  
  • Then run this in PowerShell: "sudo docker run -it -e DISPLAY=host.docker.internal:0 -v $ROUTE$:/MercuryTrunk/MercuryBuild haoutwente/mercurytrunk"
  • Now in the container, the folder "MercuryTrunk/MercuryBuild" is mapped and all the data generated there will be copied to your "Docker-data" folder


 

 

The following is for us to maintain the image to be always newest (Another option will be build up the essentials using Dockerfile and then add line by line the commands to build up the image from basic Ubuntu.

...