You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Briefly, what does this PR introduce?
This PR updates documentation to refer consistently to `eic_xl` as the
container image to use.
### What kind of change does this PR introduce?
- [ ] Bug fix (issue #__)
- [ ] New feature (issue #__)
- [x] Documentation update
- [ ] Other: __
### Please check if this PR fulfills the following:
- [ ] Tests for the changes have been added
- [x] Documentation has been added / updated
- [ ] Changes have been communicated to collaborators
### Does this PR introduce breaking changes? What changes might users
need to make to their code?
No.
### Does this PR change default behavior?
No.
Copy file name to clipboardexpand all lines: docs/howto/use_docker.md
+12-12
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ The containers are released both for docker and singularity. Singularity images
8
8
-[Docker Hub](https://hub.docker.com/u/eicweb)
9
9
- CVMFS path (available at BNL and JLab):
10
10
```
11
-
singularity run /cvmfs/singularity.opensciencegrid.org/eicweb/jug_xl:nightly
11
+
singularity run /cvmfs/singularity.opensciencegrid.org/eicweb/eic_xl:nightly
12
12
```
13
13
14
14
### Images structure:
@@ -19,7 +19,7 @@ The containers are released both for docker and singularity. Singularity images
19
19
20
20
-**debian_base** - is a container generic base container based on amd64/debian:testing
21
21
-**jug_dev** - have all major HENP packages such as ROOT, Geant4 and DD4HEP but without detector and reconstruction. The image is used for testing purposes and automation.
22
-
-**jug_xl** - intended to be used to run simulation and work on detectors for users. jug_dev + full simulation packages
22
+
-**eic_xl** - intended to be used to run simulation and work on detectors for users. jug_dev + full simulation packages
23
23
24
24
25
25
@@ -39,7 +39,7 @@ So testing is the precursor to the next release version.
39
39
40
40
**TL;DR;**
41
41
42
-
Now it is recommended to use: ```eicweb/jug_xl:nightly```
42
+
Now it is recommended to use: ```eicweb/eic_xl:nightly```
43
43
44
44
45
45
## Run in docker
@@ -50,13 +50,13 @@ Containers are available at eicweb namespace at
50
50
To download or update the container:
51
51
52
52
```bash
53
-
docker pull eicweb/jug_xl:nightly
53
+
docker pull eicweb/eic_xl:nightly
54
54
```
55
55
56
56
Running docker (minimal and probably useless):
57
57
58
58
```bash
59
-
docker run -it --rm eicweb/jug_xl:nightly
59
+
docker run -it --rm eicweb/eic_xl:nightly
60
60
```
61
61
62
62
@@ -113,7 +113,7 @@ You can bind any directory on your system to docker image by using **-v** flag:
113
113
Convenient place inside docker image is `/mnt/` directory. Full example:
114
114
115
115
```bash
116
-
docker run -it -v /home/user/eic/data:/mnt/data --rm eicweb/jug_xl:nightly
116
+
docker run -it -v /home/user/eic/data:/mnt/data --rm eicweb/eic_xl:nightly
117
117
ls /mnt/data
118
118
```
119
119
@@ -133,7 +133,7 @@ ls /mnt/data
133
133
With debugging enabled and all ports open:
134
134
135
135
```
136
-
docker run -it --rm --cap-add=SYS_PTRACE --security-opt seccomp=unconfined eicweb/jug_xl:nightly
136
+
docker run -it --rm --cap-add=SYS_PTRACE --security-opt seccomp=unconfined eicweb/eic_xl:nightly
137
137
```
138
138
139
139
@@ -146,7 +146,7 @@ The setup depends on particular tool:
146
146
-[Visual Studio Code docker remote debugging](https://code.visualstudio.com/docs/remote/remote-overview)
0 commit comments