diff --git a/.gitea/workflows/container.yaml b/.gitea/workflows/container.yaml deleted file mode 100644 index e48b3fd..0000000 --- a/.gitea/workflows/container.yaml +++ /dev/null @@ -1,12 +0,0 @@ -name: Build Multiarch Container Image -on: [push] -jobs: - call-reusable-workflow: - uses: container/multiarch-build-workflow/.gitea/workflows/build.yaml@main - with: - repository: ${{ gitea.repository }} - ref_name: ${{ gitea.ref_name }} - sha: ${{ gitea.sha }} - registry_url: ${{ secrets.REGISTRY_URL }} - registry_user: ${{ secrets.REGISTRY_USER }} - registry_pw: ${{ secrets.REGISTRY_PW }} diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..dfb18cc --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +variables: + CONTAINER_NAME: thallian/postgres + +build: + stage: build + image: + name: gcr.io/kaniko-project/executor:debug + entrypoint: [""] + script: + - mkdir -p /kaniko/.docker + - echo "{\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$(printf "%s:%s" "$CI_REGISTRY_USER" "$CI_REGISTRY_PASSWORD" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json + - >- + /kaniko/executor + --context "$CI_PROJECT_DIR" + --dockerfile "$CI_PROJECT_DIR/Dockerfile" + --destination "$CONTAINER_NAME:$CI_COMMIT_SHA" + --destination "$CONTAINER_NAME:$CI_COMMIT_REF_NAME" + --destination "$CONTAINER_NAME:latest" diff --git a/Containerfile b/Dockerfile similarity index 77% rename from Containerfile rename to Dockerfile index 7f315c4..78173db 100644 --- a/Containerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM docker.io/thallian/confd-env:3.19-3.1.6.2 +FROM thallian/confd-env:latest ENV PGDATA=/var/lib/postgresql/data RUN apk add --no-cache \ - postgresql16 \ - postgresql16-contrib + postgresql14 \ + postgresql14-contrib RUN mkdir -p /run/postgresql && mkdir -p $PGDATA RUN chown -R postgres /run/postgresql && chown -R postgres $PGDATA diff --git a/rootfs/etc/confd/templates/pg_hba.conf.tmpl b/rootfs/etc/confd/templates/pg_hba.conf.tmpl index bc3dce7..279bd74 100644 --- a/rootfs/etc/confd/templates/pg_hba.conf.tmpl +++ b/rootfs/etc/confd/templates/pg_hba.conf.tmpl @@ -1,3 +1,3 @@ local all all trust -host all all 0.0.0.0/0 md5 -host all all ::0/0 md5 +host all all 0.0.0.0/0 md5 +host all all ::1/128 trust