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

@@ -12,6 +12,12 @@ function main() {
cd "${SCRIPTPATH}"
echo "Working Dir: " $(pwd)
ID=$(podman ps --filter "ancestor=localhost/newton-lsp:latest" --format "{{.ID}}")
if [ "${ID}" != "" ]; then
echo "Is up..."
exit 1
fi
podman run -p 9999:9999 newton-lsp:latest
}
main $@;