File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,22 @@ Please follow the instructions you can find there: [https://www.docker.com/](htt
11
11
## Installing HADDOCK3 from provided image
12
12
13
13
``` bash
14
- # Run the latest haddock3 version
15
- docker run ghcr.io/haddocking/haddock3:latest
14
+ # Install the latest haddock3 version
15
+ docker pull ghcr.io/haddocking/haddock3:latest
16
+ docker tag ghcr.io/haddocking/haddock3:latest haddock3
16
17
17
18
# # OR
18
19
19
- # Run a haddock3 specific version (e.g: 2024.12.0b7)
20
+ # Install a haddock3 specific version (e.g: 2024.12.0b7)
20
21
docker run ghcr.io/haddocking/haddock3:2024.12.0b7
22
+ docker tag ghcr.io/haddocking/haddock3:2024.12.0b7 haddock3
23
+
24
+ # Run HADDOCK with a workflow file, e.g. myworkflow.cfg
25
+ docker run \
26
+ -v $( pwd) :/cwd \
27
+ --workdir /cwd \
28
+ -u $( id -u) \
29
+ haddock3 \
30
+ myworkflow.cfg
31
+
21
32
```
You can’t perform that action at this time.
0 commit comments