SoftInstigate/restheart

wrong latest-graalvm docker tag

ujibang opened this issue · 3 comments

The docker image tag latest-graalvm points to an old version.

Expected Behavior

The docker image tag latest-graalvm should point to the latest restheart (currently 7.4.2)

Current Behavior

The docker image tag latest-graalvm points to restheart v6.3.0

Steps to Reproduce

$ docker pull softinstigate/restheart:latest-graalvm
$ docker run --rm -p "8080:8080" softinstigate/restheart:latest-graalvm
...
08:04:56.253 [main] INFO  org.restheart.Bootstrapper - Starting RESTHeart instance default
08:04:56.254 [main] INFO  org.restheart.Bootstrapper - Version 6.3.0
...

There's no latest-graalvm tag, it was probably published only once by mistake.

The list of published tags for RESTHeart 7.4.2 graalvm images are:

  • softinstigate/restheart:graalvm
  • softinstigate/restheart:7-graalvm
  • softinstigate/restheart:7.4-graalvm
  • softinstigate/restheart:7.4.2-graalvm

So, to pull the latest graalvm image: docker pull softinstigate/restheart:graalvm or a specific version from the above list.

the doc page https://restheart.org/docs/setup-with-docker states differently.

Please update the doc page and the build script to create latest-graalvm tag as well

Github Actions updated to create the following tags:

  • softinstigate/restheart:graalvm
  • softinstigate/restheart:latest-graalvm
  • softinstigate/restheart:7-graalvm
  • softinstigate/restheart:7.4-graalvm
  • softinstigate/restheart:7.4.2-graalvm

Same naming schema for distroless images.

Doc page updated accordingly.