mirror of
https://projects.torsion.org/witten/borgmatic.git
synced 2025-01-04 19:17:17 +00:00
11 lines
314 B
Bash
Executable file
11 lines
314 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
docs_container_id=$(podman create "$IMAGE_NAME")
|
|
podman cp $docs_container_id:/usr/share/nginx/html - > borgmatic-docs-dump.tar
|
|
tar xf borgmatic-docs-dump.tar
|
|
rm borgmatic-docs-dump.tar
|
|
mv html borgmatic-docs
|
|
tar cfz borgmatic-docs.tar.gz borgmatic-docs
|
|
podman rm --volumes $docs_container_id
|