mirror of
https://projects.torsion.org/witten/borgmatic.git
synced 2025-01-04 19:17:17 +00:00
11 lines
283 B
Bash
Executable file
11 lines
283 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"
|
|
fi
|
|
|
|
BUILDKIT_PROGRESS=plain docker-compose --file docs/docker-compose.yaml up --build --force-recreate
|