Skip to content
Open
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
7 changes: 4 additions & 3 deletions doc/containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 &&
Expand All @@ -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 .
```
Loading