This repository has been archived on 2024-09-12. You can view files and clone it, but cannot push or open issues or pull requests.
svrjs-blog/source/_posts/SVR-JS-now-on-Docker.md

520 B

title date tags category thumbnail
SVR.JS now on Docker! 2024-05-08 14:08:51
docker
webserver
News /images/covers/SVR-JS-now-on-Docker.png

SVR.JS - a web server running on Node.JS now has an official Docker image! You can visit the repository page at https://hub.docker.com/r/svrjs/svrjs.

To install SVR.JS via Docker, run these commands:

docker pull svrjs/svrjs
docker run --name mysvrjs -d -p 80:80 --restart=always svrjs/svrjs

Replace mysvrjs with desired Docker container name.