This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 8762aa85 Site-run: prefer `podman*` over `docker*` binaries (#710)
8762aa85 is described below
commit 8762aa8593bc77b9d882456f95f06cd6077061d9
Author: Robert Stupp <[email protected]>
AuthorDate: Sun Jan 12 13:09:36 2025 +0100
Site-run: prefer `podman*` over `docker*` binaries (#710)
---
site/bin/_hugo-docker-include.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/site/bin/_hugo-docker-include.sh b/site/bin/_hugo-docker-include.sh
index 8f2bdc36..4a286577 100644
--- a/site/bin/_hugo-docker-include.sh
+++ b/site/bin/_hugo-docker-include.sh
@@ -17,8 +17,8 @@
# under the License.
#
-DOCKER="$(which docker > /dev/null && echo docker || echo podman)"
-COMPOSE="$(which docker-compose > /dev/null && echo docker-compose || echo
podman-compose)"
+DOCKER="$(which podman > /dev/null && echo podman || echo docker)"
+COMPOSE="$(which podman-compose > /dev/null && echo podman-compose || echo
docker-compose)"
# absolute path to the Polaris workspace, for the volume mount
WORKSPACE="$(pwd)"