Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "eic-shell",
"image": "ghcr.io/eic/jug_xl:nightly",
"image": "ghcr.io/eic/eic_xl:nightly",
}
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ Installation for Development Usage
**Note: this container download script is meant for expert usage. If it is unclear to you
why you would want to do this, you are probably looking for the simple installation above.**

You can use the same install scripts to setup other container setups, including `jug_dev`
(the main development container). Note that for `jug_dev` there is no nighlty release, and
the appropriate version (tag) would be `testing`. To setup the `jug_dev:testing` environment, do
You can use the same install scripts to setup other container setups, including `eic_dev`
(the main development container). Note that for `eic_dev` there is no nighlty release, and
the appropriate version (tag) would be `testing`. To setup the `eic_dev:testing` environment, do
```bash
curl -L https://github.com/eic/eic-shell/raw/main/install.sh | bash -s -- -c jug_dev -v testing
curl -L https://github.com/eic/eic-shell/raw/main/install.sh | bash -s -- -c eic_dev -v testing
```

Included software:
Expand Down Expand Up @@ -94,15 +94,15 @@ Using the docker container for your CI purposes

**These instructions are old and need updating. In general we recommend using
`eicweb/juggler:latest` for most CI usages. This image is functionally identical to
`jug_xl:nightly`**
`eic_xl:nightly`**

The docker containers are publicly accessible from
[Dockerhub](https://hub.docker.com/u/eicweb). You probably want to use the default
`jug_xl` container. Relevant versions are:
- `eicweb/jug_xl:nightly`: nightly release, with latest detector and reconstruction
`eic_xl` container. Relevant versions are:
- `eicweb/eic_xl:nightly`: nightly release, with latest detector and reconstruction
version. This is probably what you want to use unless you are dispatching a large
simulation/reconstruciton job
- `eicweb/jug_xl:3.0-stable`: latest stable release, what you want to use for large
- `eicweb/eic_xl:3.0-stable`: latest stable release, what you want to use for large
simulation jobs (for reproducibility). Please coordinate with the software group to
ensure all desired software changes are present in this container.

Expand Down
4 changes: 2 additions & 2 deletions install.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import urllib.request

## Gitlab group and project/program name.
DEFAULT_IMG='jug_xl'
DEFAULT_IMG='eic_xl'
DEFAULT_VERSION='3.0.1'

SHORTCUTS = ['eic-shell']
Expand Down Expand Up @@ -177,7 +177,7 @@ def make_modulefile(project, version, moduledir, bindir):
dest='container',
default=DEFAULT_IMG,
help='(opt.) Container to install. '
'D: {} (also available: jug_dev, and legacy "eic" container).')
'D: {} (also available: eic_dev, and legacy "eic" container).')
parser.add_argument(
'-v', '--version',
dest='version',
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
## with the $EIC_SHELL_PREFIX variable pointing
## to the $PREFIX/local directory

CONTAINER="jug_xl"
CONTAINER="eic_xl"
VERSION="nightly"
PREFIX="$PWD"

Expand Down