Docker move to alpine; moved sub README to servers

This commit is contained in:
2025-11-25 16:30:45 -06:00
parent cc41036174
commit 15fdb43193
4 changed files with 85 additions and 16 deletions

View File

@@ -11,7 +11,12 @@ function main() {
SCRIPTPATH="$( cd "$(dirname "")" >/dev/null 2>&1 ; pwd -P )"
cd "${SCRIPTPATH}"
echo "Working Dir: " $(pwd)
ID=$(podman ps --filter "ancestor=localhost/newton-lsp:latest" --format "{{.ID}}")
if [ "${ID}" == "" ]; then
echo "Is not up..."
exit 1
fi
podman container stop "${ID}"
}