From 56378fba93d72f6f508426e6cb3e7a896f2c8880 Mon Sep 17 00:00:00 2001 From: Jerry Aldrich Date: Thu, 3 Nov 2022 21:36:08 -0700 Subject: [PATCH] Switch from lighttpd to nginx-unprivileged --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fc3cfd6..abe69a0 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,9 @@ ## Running locally +``` docker run -it --rm \ - -v $(pwd)/index.html:/srv/http/index.html \ - -e LIGHTTPD_INDEX_FILE=index.html + -v $(pwd)/index.html:/usr/local/share/nginx/index.html \ -p 8080:8080 \ - jerryaldrichiii/simple-web-server + jerryaldrichiii/nginx-unprivileged +```