For future readers who encounter errors like: find: unrecognized: -newermt or environment: line 37: psql: command not found when running the solvable_files.sh script, Alpine Linux (common Docker container distro) is missing two packages you'll need to run this script.
apk update
apk add findutils bash postgresql-client sudo
EDIT: If you're using MySQL as your database instead of Postgres, you'll need:
apk update
apk add findutils bash mysql-client sudo
Thanks bavarialogy!
Hopefully this helps someone looking at this in the future!
For future readers who encounter errors like:
find: unrecognized: -newermtorenvironment: line 37: psql: command not foundwhen running thesolvable_files.shscript, Alpine Linux (common Docker container distro) is missing two packages you'll need to run this script.EDIT: If you're using MySQL as your database instead of Postgres, you'll need:
Thanks bavarialogy!
Hopefully this helps someone looking at this in the future!