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: variables:
IMAGE_NAME: thallian/postgres CONTAINER_NAME: thallian/postgres
build: build:
stage: build stage: build
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
script: script:
- docker login -u $DOCKER_USER -p $DOCKER_PASSWORD $DOCKER_REGISTRY - mkdir -p /kaniko/.docker
- docker build -t $IMAGE_NAME:$CI_COMMIT_SHA . - echo "{\"auths\":{\"$CI_REGISTRY\":{\"auth\":\"$(printf "%s:%s" "$CI_REGISTRY_USER" "$CI_REGISTRY_PASSWORD" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json
- docker build -t $IMAGE_NAME:$CI_COMMIT_REF_NAME . - >-
- docker build -t $IMAGE_NAME:latest . /kaniko/executor
- docker push $IMAGE_NAME:$CI_COMMIT_SHA --context "$CI_PROJECT_DIR"
- docker push $IMAGE_NAME:$CI_COMMIT_REF_NAME --dockerfile "$CI_PROJECT_DIR/Dockerfile"
- docker push $IMAGE_NAME:latest --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" 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 if [ ! -f "$PGDATA/PG_VERSION" ]; then
initdb --username=postgres initdb --username=postgres

View File

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