Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 5d5acd09 authored by Jason Kridner's avatar Jason Kridner
Browse files

Merge branch 'main' of git.beagleboard.org:docs/docs.beagleboard.io

parents 273effcd 6d5342e9
Branches
Tags
No related merge requests found
#!/bin/bash #!/bin/bash
docker run --rm -it -v $(pwd):/build/docs.beagleboard.org:rw beagle/sphinx-build-env /bin/bash
if command -v docker &> /dev/null
then
CONTAINER_RUNTIME=docker
elif command -v podman &> /dev/null
then
CONTAINER_RUNTIME=podman
else
echo "Failed to find docker or podman"
exit 1
fi
$CONTAINER_RUNTIME run --rm -it -v $(pwd):/build/docs.beagleboard.org:rw,z -p 8000:8000 beagle/sphinx-build-env /bin/bash
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment