move to new gitlab host

This commit is contained in:
Sebastian Hugentobler 2022-02-14 19:17:15 +01:00
parent b4e60794bb
commit 53ce3f3aad
Signed by: shu
GPG Key ID: BB32CF3CA052C2F0
5 changed files with 16 additions and 23 deletions

View File

@ -1,12 +0,0 @@
root = true
[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 4
[*.md]
trim_trailing_whitespace = false

View File

@ -1,13 +1,18 @@
variables:
IMAGE_NAME: thallian/postgres
CONTAINER_NAME: thallian/postgres
build:
stage: build
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
script:
- docker login -u $DOCKER_USER -p $DOCKER_PASSWORD $DOCKER_REGISTRY
- docker build -t $IMAGE_NAME:$CI_COMMIT_SHA .
- docker build -t $IMAGE_NAME:$CI_COMMIT_REF_NAME .
- docker build -t $IMAGE_NAME:latest .
- docker push $IMAGE_NAME:$CI_COMMIT_SHA
- docker push $IMAGE_NAME:$CI_COMMIT_REF_NAME
- docker push $IMAGE_NAME:latest
- 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"

View File

@ -1,4 +1,4 @@
#!/command/with-contenv sh
#!/bin/sh
echo "local all all trust" > "$PGDATA/pg_hba.conf"

View File

@ -1,4 +1,4 @@
#!/command/with-contenv sh
#!/bin/sh
if [ ! -f "$PGDATA/PG_VERSION" ]; then
initdb --username=postgres

View File

@ -1,4 +1,4 @@
#!/command/with-contenv sh
#!/bin/sh
exec s6-setuidgid postgres postgres \
-D $PGDATA \