Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker: switch base to debian 12 #177

Merged
merged 1 commit into from
Mar 19, 2024
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
2 changes: 1 addition & 1 deletion dockerfiles/drbd-reactor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DISTRO=bullseye
ARG DISTRO=bookworm
FROM debian:$DISTRO

ARG DRBD_REACTOR_VERSION
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/piraeus-client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DISTRO=bullseye
ARG DISTRO=bookworm
FROM debian:$DISTRO

MAINTAINER Roland Kammerer <[email protected]>
Expand Down
6 changes: 3 additions & 3 deletions dockerfiles/piraeus-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DISTRO=bullseye
ARG DISTRO=bookworm
FROM debian:$DISTRO

MAINTAINER Roland Kammerer <[email protected]>
Expand All @@ -11,12 +11,12 @@ RUN apt-get update && apt-get install -y wget ca-certificates && apt-get clean
RUN apt-get install -y gnupg2 && \
wget -O- https://packages.linbit.com/package-signing-pubkey.asc | gpg --dearmor > /etc/apt/trusted.gpg.d/linbit-keyring.gpg && \
# Enable contrib repos for zfsutils \
sed -r -i 's/^deb(.*)$/deb\1 contrib/' /etc/apt/sources.list && \
sed -i -r 's/^Components: (.*)$/Components: \1 contrib/' /etc/apt/sources.list.d/debian.sources && \
echo "deb http://packages.linbit.com/public" $DISTRO "misc" > /etc/apt/sources.list.d/linbit.list && \
echo "deb http://packages.linbit.com/public/staging" $DISTRO "misc" >> /etc/apt/sources.list.d/linbit.list && \
apt-get update && \
# Install useful utilities and general dependencies
apt-get install -y udev drbd-utils jq net-tools iputils-ping iproute2 dnsutils netcat sysstat curl util-linux && \
apt-get install -y udev drbd-utils jq net-tools iputils-ping iproute2 dnsutils netcat-traditional sysstat curl util-linux && \
# Install dependencies for optional features \
apt-get install -y \
# cryptsetup: luks layer
Expand Down
Loading