Compare commits
No commits in common. "6a325f49512177fc339b8651772426260d88a5e4" and "6791425d46d97ed64c779f7bdabad524847a2542" have entirely different histories.
6a325f4951
...
6791425d46
@ -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 }}
|
0
.gitignore
vendored
Normal file → Executable file
0
.gitignore
vendored
Normal file → Executable file
18
.gitlab-ci.yml
Normal file
18
.gitlab-ci.yml
Normal file
@ -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"
|
@ -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
|
@ -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 ::1/128 trust
|
||||
|
Loading…
Reference in New Issue
Block a user