Error: docker-compose is not installed. #92
Replies: 2 comments
-
i got the hint to replace "docker-compose" by "docker compose" (remove the "-") function check_dependencies {
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
I commented the if in the function and then it works: if ! [ -x "$(command -v git)" ]; thenecho '
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi guys,
I am hitting a wall here, I need a little hint.
I am new to Linux, raspi, python, etc.. Programming since 40 years though, Fortran, C, C++, Pascal, VB, VBA etc., industrial controllers (Siemens, Honeywell, etc).
I want to install ct-Home-Server (raspi 4 with OpenSprinkler, nothing else) but I get an error when running start.sh:
$ cd ct-Smart-Home
⚠️ Error: docker-compose is not installed.
$~/ct-Smart-Home $ ./start.sh start
Docker and docker-compose was installed according to https://www.heise.de/ratgeber/Docker-einrichten-unter-Linux-Windows-macOS-4309355.html:
$ curl -fsSL https://get.docker.com -o get-docker.sh
$ sudo sh get-docker.sh
$ sudo usermod -aG docker $USER
$ apt install docker-compose-plugin
After installing. I checked the installation:
$ docker version
Client: Docker Engine - Community
Version: 25.0.3
API version: 1.44
Go version: go1.21.6
Git commit: 4debf41
Built: Tue Feb 6 21:14:22 2024
OS/Arch: linux/arm64
Context: default
Server: Docker Engine - Community
Engine:
Version: 25.0.3
API version: 1.44 (minimum version 1.24)
Go version: go1.21.6
Git commit: f417435
Built: Tue Feb 6 21:14:22 2024
OS/Arch: linux/arm64
Experimental: false
containerd:
Version: 1.6.28
GitCommit: ae07eda36dd25f8a1b98dfbf587313b99c0190bb
runc:
Version: 1.1.12
GitCommit: v1.1.12-0-g51d5e94
docker-init:
Version: 0.19.0
GitCommit: de40ad0
$ docker compose version
Docker Compose version v2.24.5
ct-Smart-Home was installed like described in this main section in git hub:
Anybody got an idea?
Cheers
Christian
Beta Was this translation helpful? Give feedback.
All reactions