Compare commits

...

17 Commits

Author SHA1 Message Date
569ba188c8 Merge pull request 'devel' (#2) from devel into main
Reviewed-on: #2
2024-09-26 11:40:43 +00:00
3e728cdc53 Merge pull request 'entrypoint.sh aktualisiert' (#1) from main into devel
Reviewed-on: #1
2024-09-26 11:40:12 +00:00
a207812ac2 tag 16-20240926.1
All checks were successful
Create postgresql docker image / Explore-Gitea-Actions (push) Successful in 15s
2024-09-26 12:31:52 +02:00
7404c49d5e <type>[optional scope]: <description>
[optional body]

[Ticket: no]
2024-09-26 12:31:22 +02:00
918b5300a1 last test run
All checks were successful
Create postgresql docker image / Explore-Gitea-Actions (push) Successful in 16s
2024-09-26 12:29:32 +02:00
45d309f2a2 last test run 2024-09-26 12:29:13 +02:00
5bf2dfa37c ghgh
All checks were successful
Create postgresql docker image / Explore-Gitea-Actions (push) Successful in 15s
2024-09-26 12:27:24 +02:00
d79ca90459 d 2024-09-26 12:27:09 +02:00
198633584e tst
All checks were successful
Create postgresql docker image / Explore-Gitea-Actions (push) Successful in 20s
2024-09-26 12:25:00 +02:00
9479f5854d no 2024-09-26 12:24:43 +02:00
7c8be88bb3 <type>[optional scope]: <description>
All checks were successful
Create postgresql docker image / Explore-Gitea-Actions (push) Successful in 27s
[optional body]

[Ticket: no]
2024-09-26 12:19:40 +02:00
04307162cc <type>[optional scope]: <description>
[optional body]

[Ticket: no]
2024-09-26 12:19:18 +02:00
7695265bd3 <type>[optional scope]: <description>
Some checks failed
Create postgresql docker image / Explore-Gitea-Actions (push) Failing after 11s
[optional body]

[Ticket: no]
2024-09-26 12:10:57 +02:00
819933cca1 change 2024-09-26 12:10:21 +02:00
e15ca89c3e <type>[optional scope]: <description>
Some checks failed
Create postgresql docker image / Explore-Gitea-Actions (push) Failing after 18s
[optional body]

[Ticket: no]
2024-09-26 12:05:14 +02:00
f71f796a58 change workflow script 2024-09-26 12:03:06 +02:00
2514632d3b change apk update command
All checks were successful
Create postgresql docker image / Explore-Gitea-Actions (push) Successful in 25s
2024-09-26 11:36:41 +02:00
2 changed files with 23 additions and 8 deletions

View File

@ -11,8 +11,9 @@ jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
env:
REGISTRY: registry.tuxnet.lan
REGISTRY: git.cooltux.net
IMAGE: db/pg_dump
DOCKER_ORG: ${{ secrets.DOCKER_USERNAME }}
steps:
- name: Checkout
uses: actions/checkout@v3
@ -24,9 +25,22 @@ jobs:
uses: docker/setup-buildx-action@v2
with: # replace it with your local IP
config-inline: |
[registry."registry.tuxnet.lan"]
http = true
insecure = true
[registry."git.cooltux.net"]
http = false
insecure = false
- name: Login to DockerHub
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }} # replace it with your local IP
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Get Meta
id: meta
run: |
echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT
# echo REPO_VERSION=$(git describe --tags --always | sed 's/^v//') >> $GITHUB_OUTPUT
- name: Set Docker Version
id: get_version
@ -42,5 +56,6 @@ jobs:
file: ./Dockerfile
platforms: |
linux/amd64
push: false
tags: ${{ env.REGISTRY }}/${{ env.IMAGE }}:${{ steps.get_version.outputs.tag }}
push: true
tags: |
${{ env.REGISTRY }}/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.get_version.outputs.tag }}

View File

@ -1,10 +1,10 @@
FROM alpine:latest
LABEL maintainer="development@cooltux.net"
ARG VERSION=16-20240926
ARG VERSION=16-20240926.1
# PostgreSQL-Client installieren
RUN apk update ; \
RUN apk update --no-cache ; \
apk add --no-cache postgresql16-client
# Arbeitsverzeichnis erstellen