* v0.9.55

- CGI Support (eg PHP, Perl, etc)
- Slight PC Admin updates
- Numerous bug fixes
- Security updates

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
zefie
2025-01-03 12:49:50 -05:00
committed by GitHub
parent 9314705def
commit 907cec23c2
28 changed files with 1637 additions and 576 deletions

18
run_docker_dev.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
DIR="$(realpath "$(dirname "${0}")")"
BUILDDIR="${DIR}/docker-compose/minisrv"
docker build -f "${BUILDDIR}/Dockerfile-dev" -t minisrv-dev:latest "${BUILDDIR}"
if [ "${1}" == "env" ]; then
shift
docker run --rm -it -p 1600-1699:1600-1699 \
-v "${DIR}/zefie_wtvp_minisrv:/workspace" \
minisrv-dev:latest \
"${@}"
else
docker run --rm -it -p 1600-1699:1600-1699 \
-v "${DIR}/zefie_wtvp_minisrv:/workspace" \
minisrv-dev:latest \
node /workspace/app.js
fi