First, install Docker here.
Then run the following commands in a Linux shell:
image=hub.aiursoft.com/anduin/ipcalc
appName=ipcalc
sudo docker pull $image
sudo docker run -d --name $appName --restart unless-stopped -p 5000:5000 $imageThat will start a web server at http://localhost:5000 and you can test the app.
The docker image has the following context:
| Properties | Value |
|---|---|
| Image | hub.aiursoft.com/anduin/ipcalc |
| Ports | 5000 |
| Binary path | /app |
| Data path | /data |
