|
16 | 16 | <a href="https://www.codacy.com/app/mathLab/PyGeM?utm_source=github.com&utm_medium=referral&utm_content=mathLab/PyGeM&utm_campaign=Badge_Grade" target="_blank"> |
17 | 17 | <img alt="Codacy Badge" src="https://api.codacy.com/project/badge/Grade/7299abd9d61c4aa586903d80cea01c82"> |
18 | 18 | </a> |
| 19 | + <a href="https://registry.hub.docker.com/r/sissamathlab/pygem"> |
| 20 | + <img alt="Docker Pulls" src="https://img.shields.io/docker/pulls/sissamathlab/pygem"> |
| 21 | + </a> |
19 | 22 | </p> |
20 | 23 |
|
21 | 24 | [PyGeM](http://mathlab.github.io/PyGeM/) (Python Geometrical Morphing) is a python package that allows you to deform a given geometry or mesh with different deformation techniques such as FFD, RBF and IDW. |
@@ -83,25 +86,25 @@ Docker containers are extremely lightweight, secure, and are based on open stand |
83 | 86 | Install Docker for your platform by following [these instructions](https://docs.docker.com/engine/getstarted/step_one/). |
84 | 87 | If using the Docker Toolbox (macOS versions < 10.10 or Windows versions < 10), make sure you run all commands inside the Docker Quickstart Terminal. |
85 | 88 |
|
86 | | -Now we will pull the docker.io/pygemdocker/pygem image from our cloud infrastructure: |
| 89 | +Now we will pull the sissamathlab/pygem image from our cloud infrastructure: |
87 | 90 | ```bash |
88 | | -> docker pull docker.io/pygemdocker/pygem:latest |
| 91 | +> docker pull sissamathlab/pygem:latest |
89 | 92 | ``` |
90 | 93 | Docker will pull the latest tag of the image pygemdocker/pygem from docker.io. The download is around 3.246 GB. The image is a great place to start experimenting with PyGeM and includes all dependencies already compiled for you. |
91 | 94 | Once the download is complete you can start PyGeM for the first time. Just run: |
92 | 95 | ```bash |
93 | | -> docker run -ti pygemdocker/pygem:latest |
| 96 | +> docker run -ti sissamathlab/pygem:latest |
94 | 97 | ``` |
95 | 98 | To facilitate the devoloping, using the text editor,version control and other tools already installed on your computers, |
96 | 99 | it is possible to share files from the host into the container: |
97 | 100 |
|
98 | 101 | ```bash |
99 | | -> docker run -ti -v $(pwd):/home/PyGeM/shared pygemdocker/pygem:latest |
| 102 | +> docker run -ti -v $(pwd):/home/PyGeM/shared sissamathlab/pygem:latest |
100 | 103 | ``` |
101 | 104 | To allow the X11 forwarding in the container, on Linux system just run: |
102 | 105 |
|
103 | 106 | ```bash |
104 | | -> docker run -ti --rm -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix -v $(pwd):/home/PyGeM/shared pygemdocker/pygem:latest |
| 107 | +> docker run -ti --rm -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix -v $(pwd):/home/PyGeM/shared sissamathlab/pygem:latest |
105 | 108 | ``` |
106 | 109 |
|
107 | 110 | For Windows system, you need to install Cygwin/X version and running the command in Cygwin terminal. While for mac system, you need to install xquartz. |
|
0 commit comments