From e5b3409a94358aadf853925b96cfbfdb31898390 Mon Sep 17 00:00:00 2001 From: Torsten Raudssus Date: Sun, 31 Mar 2024 00:09:33 +0100 Subject: [PATCH] Adding README and switching CI to latest Docker and Dind --- .gitlab-ci.yml | 4 ++-- README.md | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 README.md diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d066caa..9c9544d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: docker:20.10.16 +image: docker:latest variables: IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG @@ -9,7 +9,7 @@ stages: - release services: - - docker:20.10.16-dind + - docker:dind build: stage: build diff --git a/README.md b/README.md new file mode 100644 index 0000000..95fbff3 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# PostgreSQL 16 Image + +## How To Use + +### Args + +#### SRV_UID + +User ID for the PostgreSQL daemon and so of the data (Default: 1000) + +#### SRV_GID + +Group ID for the PostgreSQL daemon and so of the data (Default: 1000) + +#### SRV_LOCALE + +Locale used for initdb (Default: en_US) + +### Image Name + +``` +docker.ci/srv/postgres:latest +```