Skip to content

Commit 785d8f5

Browse files
committed
Revert "feat(containers): drop docker-compose in favor of docker compose from docker-cli"
This reverts commit faf3d26.
1 parent 1098fca commit 785d8f5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

build_files/60-containers.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ set -euxo pipefail
55
# shellcheck source=go-env.sh
66
source "$(dirname "${BASH_SOURCE[0]}")/go-env.sh"
77

8-
dnf5 -y install docker-cli
8+
dnf5 -y install docker-cli docker-compose-switch
99
mv /usr/bin/docker /usr/bin/docker.real
10+
mv /usr/bin/docker-compose /usr/bin/docker-compose.real
1011

1112
go install github.com/jesseduffield/lazydocker@latest
1213
go install github.com/sigstore/cosign/v3/cmd/cosign@latest
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
export DOCKER_HOST=${DOCKER_HOST:-unix:///run/user/$UID/podman/podman.sock}
3+
exec /usr/bin/docker-compose.real "$@"

0 commit comments

Comments
 (0)