Skip to content

Fix Docker install instructions #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions src/docker-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,22 @@ Please follow the instructions you can find there: [https://www.docker.com/](htt
## Installing HADDOCK3 from provided image

```bash
# Run the latest haddock3 version
docker run ghcr.io/haddocking/haddock3:latest
# Install the latest haddock3 version
docker pull ghcr.io/haddocking/haddock3:latest
docker tag ghcr.io/haddocking/haddock3:latest haddock3

## OR

# Run a haddock3 specific version (e.g: 2024.12.0b7)
# Install a haddock3 specific version (e.g: 2024.12.0b7)
docker run ghcr.io/haddocking/haddock3:2024.12.0b7
docker tag ghcr.io/haddocking/haddock3:2024.12.0b7 haddock3

# Run HADDOCK with a workflow file, e.g. myworkflow.cfg
docker run \
-v $(pwd):/cwd \
--workdir /cwd \
-u $(id -u) \
haddock3 \
myworkflow.cfg

```
Loading