@@ -11,15 +11,15 @@ The image contains SIRF & all dependencies required by JupyterHub.
11
11
12
12
``` sh
13
13
# CPU version
14
- docker run --rm -it -p 9999:8888 ghcr.io/synerbi/sirf:jupyter
14
+ docker run --rm -it -p 9999:8888 ghcr.io/synerbi/sirf:latest
15
15
# GPU version
16
- docker run --rm -it -p 9999:8888 --gpus all ghcr.io/synerbi/sirf:jupyter -gpu
16
+ docker run --rm -it -p 9999:8888 --gpus all ghcr.io/synerbi/sirf:latest -gpu
17
17
```
18
18
19
19
> [ !TIP]
20
20
> docker tag | CIL branch/tag
21
21
> :---|:---
22
- > ` latest ` , ` latest-gpu ` , ` jupyter ` , ` jupyter-gpu ` | [ latest tag ` v*.*.* ` ] ( https://github.com/SyneRBI/SIRF-SuperBuild/releases/latest )
22
+ > ` latest ` , ` latest-gpu ` | [ latest tag ` v*.*.* ` ] ( https://github.com/SyneRBI/SIRF-SuperBuild/releases/latest )
23
23
> ` M ` , ` M.m ` , ` M.m.p ` , ` M-gpu ` , ` M.m-gpu ` , ` M.m.p-gpu ` | tag ` vM.m.p `
24
24
> ` edge ` , ` edge-gpu ` | ` master `
25
25
> only build & test (no tag) | CI (current commit)
@@ -35,7 +35,7 @@ The Jupyter notebook should be accessible at <http://localhost:9999>.
35
35
> ``` sh
36
36
> docker run --rm -it -p 9999:8888 --user $( id -u) --group-add users \
37
37
> -v ./devel:/home/jovyan/work \
38
- > ghcr.io/synerbi/sirf:jupyter
38
+ > ghcr.io/synerbi/sirf:latest
39
39
> ` ` `
40
40
41
41
More config: < https://jupyter-docker-stacks.readthedocs.io/en/latest/using/common.html#user-related-configurations> .
@@ -46,7 +46,7 @@ More config: <https://jupyter-docker-stacks.readthedocs.io/en/latest/using/commo
46
46
> ` ` ` sh
47
47
> docker run --rm -it -p 9999:8888 --user $( id -u) --group-add users \
48
48
> -v /mnt/data:/share -e SIRF_DOWNLOAD_DATA_ARGS=" -pm -D /share" \
49
- > ghcr.io/synerbi/sirf:jupyter
49
+ > ghcr.io/synerbi/sirf:latest
50
50
> ` ` `
51
51
52
52
# ## Extending
@@ -55,9 +55,9 @@ You can build custom images on top of the SIRF ones, likely needing to switch be
55
55
56
56
` ` ` Dockerfile
57
57
# CPU version
58
- # FROM synerbi/sirf:jupyter
58
+ # FROM synerbi/sirf:latest
59
59
# GPU version
60
- FROM synerbi/sirf:jupyter -gpu
60
+ FROM synerbi/sirf:latest -gpu
61
61
USER root
62
62
RUN mamba install pytorch && fix-permissions " ${CONDA_DIR} " /home/${NB_USER}
63
63
USER ${NB_UID}
0 commit comments