PostgreSQL DR のセットアップの一環として、barman を Docker コンテナーとしてセットアップおよびデプロイしようとしています。
2ndQuadrant Public APT リポジトリを使用して barman をインストールすると、2.11 ではなく barman 2.6-1 がインストールされていることに気付きました。
以下は、この共有を目的として、Dockerfile スニペットを簡略化したものです。
# Dockerfile
# Barman
FROM debian:buster-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
apt-utils \
# ca-certificates \
curl \
cron \
&& apt-get update \
&& curl https://dl.2ndquadrant.com/default/release/get/deb | bash \
&& apt-get update \
&& apt-get install -y --no-install-recommends barman \
&& rm -rf /var/lib/apt/lists/*
...
...
ビルドを行うと、これが表示されます。
Selecting previously unselected package barman.
Preparing to unpack .../9-barman_2.6-1_all.deb ...
Unpacking barman (2.6-1) ...
Setting up libexpat1:amd64 (2.2.6-2+deb10u1) ...
Setting up mime-support (3.62) ...
Setting up libsqlite3-0:amd64 (3.27.2-3) ...
Setting up libpq5:amd64 (11.7-0+deb10u1) ...
Setting up readline-common (7.0-5) ...
Setting up libreadline7:amd64 (7.0-5) ...
Setting up libpopt0:amd64 (1.16-12) ...
Setting up libpython2.7-stdlib:amd64 (2.7.16-2+deb10u1) ...
Setting up rsync (3.1.3-6) ...
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of restart.
Setting up python2.7 (2.7.16-2+deb10u1) ...
Setting up libpython2-stdlib:amd64 (2.7.16-1) ...
Setting up python2 (2.7.16-1) ...
Setting up libpython-stdlib:amd64 (2.7.16-1) ...
Setting up python (2.7.16-1) ...
Setting up python-argh (0.26.2-1) ...
Setting up python-argcomplete (1.8.1-1) ...
Setting up python-six (1.12.0-1) ...
Setting up python-psycopg2 (2.7.7-1) ...
Setting up python-dateutil (2.7.3-3) ...
Setting up barman (2.6-1) ...
Processing triggers for libc-bin (2.28-10) ...
...
...
ここで私が間違っていること、または適切なレポが更新されていないことについての指針はありますか?
ありがとうムトゥ