Currently we are only publishing docker image for one postgres version and with tag lanterndb:$version, with this PR we are adding ability to publish docker images on all supported postgres versions at once, and the tag will be lanterndb:$version-pg$pg_version.
I have specified bookworm distro name in Dockerfile as postgres:11 image without specifying the distro name is failing to update apt repositories.
The :latest version tag will only be published with postgres version 15, so lanterndata/lanterndb:latest will refer to latest extension version on latest postgres version supported
Description
Currently we are only publishing docker image for one postgres version and with tag
lanterndb:$version
, with this PR we are adding ability to publish docker images on all supported postgres versions at once, and the tag will belanterndb:$version-pg$pg_version
.The example of published images can be found at https://hub.docker.com/r/varik77/lanterndb/tags
I have specified
bookworm
distro name inDockerfile
aspostgres:11
image without specifying the distro name is failing to update apt repositories.The
:latest
version tag will only be published with postgres version 15, solanterndata/lanterndb:latest
will refer to latest extension version on latest postgres version supported