From b5eeb23b531de69c0312d9d88d75ba192e987189 Mon Sep 17 00:00:00 2001 From: Jan Frase <52297612+Jan-Frase@users.noreply.github.com> Date: Fri, 15 May 2026 10:39:01 +0200 Subject: [PATCH] Docs: Update Docker commands --- doc/containers.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/containers.md b/doc/containers.md index 8471ad241..f11899627 100644 --- a/doc/containers.md +++ b/doc/containers.md @@ -9,13 +9,14 @@ Setting up and using the container looks like the following: ```console git clone https://github.com/parcio/julea.git && -docker pull ghcr.io/parcio/ubuntu-dev:22.04 && -docker run -v $PWD/julea:/julea -it ghcr.io/parcio/ubuntu-dev:22.04 +docker pull ghcr.io/parcio/julea/ubuntu:24.04-base && +docker run -v $PWD/julea:/julea -it ghcr.io/parcio/julea/ubuntu:24.04-base ``` Continue with the following commands inside the container: ```console +cd julea && . scripts/environment.sh && meson setup --prefix="/julea/install" -Db_sanitize=address,undefined bld && @@ -39,5 +40,5 @@ To build the container, use the following commands: ```console cd julea/containers && -docker build -f ubuntu-22.04-dev -t parcio/ubuntu-dev:22.04 . +docker build -f ubuntu-24.04 -t parcio/julea/ubuntu:24.04-base . ```