Skip to content

Commit 9a56d71

Browse files
committed
Add docker pull command to README.md
1 parent ebfedde commit 9a56d71

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,19 @@ A quick file setup and run test can be performed running files in [scripts/Setup
7272
<a name="docker-installation"></a>
7373
### Setup and Run Docker Image
7474

75-
Build the image using the stored [Dockerfile](./Dockerfile)
76-
```bash
77-
docker build -t pypef . # --progress=plain --no-cache
78-
```
75+
Pull from Docker Hub or build the image using the stored [Dockerfile](./Dockerfile):
76+
77+
- pulling from Docker Hub by specifying the version tag
78+
```bash
79+
# docker pull niklases/pypef:VERSION_TAG, e.g.
80+
docker pull niklases/pypef:0.4.2
81+
```
82+
83+
- building image from Dockerfile
84+
```bash
85+
docker build -t pypef . # --progress=plain --no-cache
86+
```
87+
7988

8089
A chained container command using the built Docker image can be run with e.g.:
8190
```bash

0 commit comments

Comments
 (0)