Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 819 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 819 Bytes

docs.opensvc.com

The sphinx documentation published on https://docs.opensvc.com

Contributors should read the following doc sections:


development environment howto

build docker image

docker build -t osvcsphinx:dev .

launch webserver

docker run --name osvcsphinx --rm -d -v $PWD:/data osvcsphinx:dev

dev & build doc

docker exec -it osvcsphinx /bin/bash cd /data ; make html

open your favorite browser to http://ip.of.container:8000/build/html/

CONTAINER_IP=$(docker container inspect -f '{{ .NetworkSettings.IPAddress }}' osvcsphinx) xdg-open http://$CONTAINER_IP:8000/build/html

stop and remove container

docker rm -f osvcsphinx