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
4 changes: 3 additions & 1 deletion docs/guide/content/development_guide/ood.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ We have develop the OnDemand Loop Beta version with **Open OnDemand version 3.1.
| 4.0.4 | 2025‑05‑21 | 🚫 Not in test scope |
| 4.0.5 | 2025‑05‑27 | 🚫 Not in test scope |
| 4.0.6 | 2025‑07‑10 | ✅ Tested |
| 4.1.20251210-249779.82d77f0.nightly | 2025‑12‑10 | 🚫 Not in test scope |


!!! note
Expand All @@ -43,6 +44,7 @@ Docker images are published under [hmdc/sid-ood on Docker Hub](https://hub.docke
- v3.1.14
- v4.0.0
- v4.0.6
- v4.1.20251210-249779.82d77f0.nightly

#### OOD version configuration

Expand Down Expand Up @@ -73,4 +75,4 @@ This approach is useful for testing, customization, or contributing to the proje
make clean
make remote_dev_build
# Copy the ./application folder with the built artifacts into your OnDemand development directory
```
```
8 changes: 8 additions & 0 deletions tools/make/ood_versions.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ OOD_VERSION ?= 3.1.7
OOD_UID := $(shell id -u)
OOD_GID := $(shell id -g)

# Configuration for OOD 4.1 nightly
define CONFIG_4.1.nightly
OOD_IMAGE := hmdc/sid-ood:ood-4.1.nightly.el8
RUBY_VERSION := ruby:3.3
NODE_VERSION := nodejs:22
LOOP_BUILDER_IMAGE := hmdc/ondemand-loop:builder-R3.3
endef

# Configuration for OOD 4.0.6
define CONFIG_4.0.6
OOD_IMAGE := hmdc/sid-ood:ood-4.0.6.el8
Expand Down