File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -12,4 +12,8 @@ launcher/ferretdb
1212
1313# Exporter_v2
1414docker /exporter_v2
15- launcher /exporter_v2
15+ launcher /exporter_v2
16+
17+ # logical backup
18+ docker /logical_backup /
19+ scripts /logical_backup /
Original file line number Diff line number Diff line change @@ -82,6 +82,13 @@ COPY --from=builder /usr/lib64 /usr/lib64
8282# CA
8383COPY --from=builder /usr/bin/ca-legacy /usr/bin/ca-legacy
8484COPY --from=builder /usr/bin/update-ca-trust /usr/bin/update-ca-trust
85+ # grep
86+ COPY --from=builder /etc/profile.d /etc/profile.d
87+ COPY --from=builder /usr/bin/grep /usr/bin/grep
88+ COPY --from=builder /usr/libexec /usr/libexec
89+ # COPY --from=builder /usr/bin/update-ca-trust /usr/bin/update-ca-trust
90+ # COPY --from=builder /usr/bin/update-ca-trust /usr/bin/update-ca-trust
91+
8592# p11-kit
8693COPY --from=builder /etc/pkcs11 /etc/pkcs11
8794COPY --from=builder /usr/libexec/p11-kit /usr/libexec/p11-kit
@@ -95,12 +102,17 @@ COPY --from=builder /usr/share/pki /usr/share/pki
95102COPY --from=builder /etc/ssl /etc/ssl
96103COPY --from=builder /etc/pkcs11 /etc/pkcs11
97104
105+ # p11-kit-trust
106+ COPY --from=builder /usr/bin/trust /usr/bin/
107+
98108# libraries
99109COPY --from=builder /usr/bin/nss_wrapper.pl /usr/bin/nss_wrapper.pl
100110# COPY --from=builder /usr/lib64/libnss_wrapper.so /usr/lib64/libnss_wrapper.so
101111COPY --from=builder /usr/share/man/man1 /usr/share/man/man1
102112COPY --from=builder /usr/bin/envsubst /usr/bin/envsubst
103113
114+ RUN /usr/bin/update-ca-trust extract
115+
104116# add postgres user and group
105117# RUN groupadd postgres -g 26 && useradd postgres -u 26 -g 26
106118
Original file line number Diff line number Diff line change 1919 # Create Stanza and run Init-Backup
2020 stanza=$( pgbackrest info --output=json)
2121 if [ " $stanza " == " []" ]; then
22- pgbackrest stanza-create --stanza=db1
22+ pgbackrest stanza-create --stanza=db
2323 pgbackrest backup --type=full --stanza=db --repo=1
2424 echo " Finished: pgBackRest is ready for use"
2525 else
You can’t perform that action at this time.
0 commit comments