Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ version: 2

updates:
- package-ecosystem: "docker"
directory: "/"
directories:
- "/"
- "/17"
- "/18"
schedule:
interval: "daily"
open-pull-requests-limit: 5
10 changes: 7 additions & 3 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ permissions: read-all
jobs:
docker:
runs-on: ubuntu-26.04
strategy:
matrix:
version: [17, 18]

steps:
- uses: actions/checkout@v7
Expand All @@ -24,8 +27,9 @@ jobs:

docker compose --version

- name: Build kiwitcms/postgres
- name: Build kiwitcms/postgres:${{ matrix.version }}
working-directory: ${{ matrix.version }}
run: |
docker build -t kiwitcms/postgres .
docker build -t kiwitcms/postgres:${{ matrix.version }} .

docker images --digests
docker images
File renamed without changes.
11 changes: 11 additions & 0 deletions 18/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM postgres:18@sha256:4aabea78cf39b90e834caf3af7d602a18565f6fe2508705c8d01aa63245c2e20

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates curl gnupg \
&& curl -sSL https://keys.datadoghq.com/DATADOG_APT_KEY_CURRENT.public | gpg --dearmor --output /usr/share/keyrings/datadog-archive-keyring.gpg \
&& echo "deb [signed-by=/usr/share/keyrings/datadog-archive-keyring.gpg] https://apt.datadoghq.com/ stable 7" > /etc/apt/sources.list.d/datadog.list \
&& apt-get update \
&& apt-get install -y --no-install-recommends datadog-agent datadog-signing-keys \
&& rm -rf /var/lib/apt/lists/*