Skip to content

Commit 4417d51

Browse files
committed
troubleshooting
1 parent 25aa525 commit 4417d51

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

content/en/contributing-to-harmony.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,23 @@ If you see an error such as the below, check that your `.env` and `.env.developm
317317
{{< image src="/images/fe-uncaught-runtime-error.png" title="Harmony repos" >}}
318318

319319

320+
#### Troubleshooting the Docker container
321+
322+
You may be trying to run the Docker container locally so that you can run R and Harmony entirely on your computer without sending data over the internet.
323+
324+
Normally this command should run in command line / Terminal:
325+
326+
```
327+
docker run -p 8000:80 harmonydata/harmonyapi
328+
```
329+
330+
But if you get an error such as "manifest unknown" then that means that you need to supply the Docker image with an exact tag (which tells Docker which version of Harmony Docker to run). You can see all the Docker images here: https://hub.docker.com/r/harmonydata/harmonyapi/tags and you can pick the latest one and put it in the command, something like this:
331+
332+
333+
```
334+
docker run -p 8000:80 harmonydata/harmonyapi:20250311105945_1df2e89
335+
```
336+
320337
## Additional Resources
321338

322339
1. [FAQ](https://harmonydata.ac.uk/frequently-asked-questions/)

0 commit comments

Comments
 (0)