Skip to content

Commit df81c8e

Browse files
committed
simple test
1 parent 434b10f commit df81c8e

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Tools for machine learnt interatomic potentials
1717
- [Features](#features)
1818
- [Python interface](#python-interface)
1919
- [Command line interface](#command-line-interface)
20+
- [Docker/Podman images](#docker-podman-images)
2021
- [Development](#development)
2122
- [License](#license)
2223
- [Funding](#funding)
@@ -296,32 +297,34 @@ Minimal and full example configuration files for all calculations can be found
296297

297298
## Docker/Podman images
298299

299-
You can use `janus_core` in a JupyterHub or marimo environment. We provide regularly updated images, which can be dowloaded by running:
300+
You can use `janus_core` in a JupyterHub or marimo environment using [docker](https://www.docker.com) or [podman](https://podman.io/). We provide regularly updated docker/podman images, which can be dowloaded by running:
300301

301302
```shell
302-
docker pull ghcr.io/stfc/janus-core/jupyter:latest
303+
docker pull ghcr.io/stfc/janus-core/jupyter:amd64-latest
303304

304-
docker pull ghcr.io/stfc/janus-core/marimo:latest
305+
docker pull ghcr.io/stfc/janus-core/marimo:amd64-latest
305306
```
306307
or using podman
307308

308309
```shell
309-
podman pull ghcr.io/stfc/janus-core/jupyter:latest
310+
podman pull ghcr.io/stfc/janus-core/jupyter-amd64:latest
310311

311-
podman pull ghcr.io/stfc/janus-core/marimo:latest
312+
podman pull ghcr.io/stfc/janus-core/marimo-amd64:latest
312313
```
313314

315+
for amd64 architecture, if you require arm64 replace amd64 with arm64 above, and next instructions.
316+
314317
To start, for marimo run:
315318

316319
```shell
317320

318-
podman run --rm --security-opt seccomp=unconfined -p 8842:8842 ghcr.io/stfc/janus-core/marimo:latest
321+
podman run --rm --security-opt seccomp=unconfined -p 8842:8842 ghcr.io/stfc/janus-core/marimo:amd64-latest
319322

320323
```
321324
or for JupyterHub, run:
322325

323326
```
324-
podman run --rm --security-opt seccomp=unconfined -p 8888:8888 ghcr.io/stfc/janus-core/jupyter:latest
327+
podman run --rm --security-opt seccomp=unconfined -p 8888:8888 ghcr.io/stfc/janus-core/jupyter:amd64-latest
325328
```
326329

327330
For more details on how to share your filesystem and so on you can refer to this documentation: https://summer.ccp5.ac.uk/introduction.html#run-locally.

0 commit comments

Comments
 (0)