How to get script directory (not current directory) in shell (sh) script (not bash)? – Docker
Folder structure: #root |- deployment | |- start-dev.sh | |- docker-compose.yml | |- // other files including app.Dockerfile and anything else I need |- // everything else Initial start-dev.sh #!/bin/sh docker-compose -p my-container up -d docker-compose -p my-container exec app…