I just tried to get Foodsoft running locally via Docker (Ubuntu) and ran into the following problems:
-
docker-compose -f docker-compose-dev.yml up -d mariadb
led to the errordocker.errors.DockerException: Install paramiko package to enable ssh:// support
I noticed that this is a problem with compose v1 (I was using docker-compose version 1.29.2) and tried compose v2, replacing “docker-compose” with “docker compose”. Then the first command worked. -
docker compose -f docker-compose-dev.yml run --rm foodsoft bundle install
Again using compose v2, I got the following error:
Error response from daemon: OCI runtime create failed: container_linux.go:380: starting container process caused: exec: "./docker-entrypoint.sh": stat ./docker-entrypoint.sh: no such file or directory: unknown
I was using shell in the Foodsoft directory.
How should I solve this?