mirror of
https://github.com/borgmatic-collective/borgmatic.git
synced 2026-07-22 10:13:00 +02:00
22 lines
677 B
Bash
Executable File
22 lines
677 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
USER_PODMAN_SOCKET_PATH=/run/user/$UID/podman/podman.sock
|
|
|
|
if [ -e "$USER_PODMAN_SOCKET_PATH" ]; then
|
|
export DOCKER_HOST="unix://$USER_PODMAN_SOCKET_PATH"
|
|
export CONTAINER_SOCKET_PATH="$USER_PODMAN_SOCKET_PATH"
|
|
fi
|
|
|
|
podman build --tag borgmatic-release-docs --file docs/Dockerfile .
|
|
docs_container_id=$(podman create borgmatic-release-docs)
|
|
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
|
|
rm -f dist/borgmatic-docs.tar.gz
|
|
tar cfz dist/borgmatic-docs.tar.gz borgmatic-docs
|
|
rm -fr borgmatic-docs
|
|
podman rm --volumes "$docs_container_id"
|