0

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) ...
...
...

ここで私が間違っていること、または適切なレポが更新されていないことについての指針はありますか?

ありがとうムトゥ

4

1 に答える 1

0

更新するだけですが、2ndQuadrant パブリック APT リポジトリに問題があるようです。PostgreSQL コミュニティの APT リポジトリを使用すると、最新バージョンが取得され、インストールされます。

他の人が始めている場合は、これを使用してください(以下を参照)。

以下は関連するスニペットです。

# Dockerfile

# Barman

FROM debian:buster-slim

RUN apt-get update && apt-get install -y --no-install-recommends wget gnupg2 cron openssh-server && rm -rf /var/lib/apt/lists/*
RUN sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ buster-pgdg main" >> /etc/apt/sources.list.d/pgdg.list' \ 
    && (wget --no-check-certificate --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - ) \ 
    && apt-get update && apt-get install -y barman \    
    && rm -rf /var/lib/apt/lists/*
RUN usermod -a -G sudo barman
...
...
...

ありがとう

于 2020-08-03T22:41:23.333 に答える