A static website that hosts a series of labs that people can try to do things with Azure using Codespaces. The Codespaces repositories are elsewhere and they are different from lab to lab.
docker run --rm \
--volume="$PWD:/srv/jekyll" \
-p 4000:4000 \
jekyll/jekyll \
jekyll serve
export JEKYLL_VERSION=3.8
docker run --rm \
--volume="$PWD:/srv/jekyll" \
-it jekyll/jekyll:$JEKYLL_VERSION \
bundle update
- Submit a PR with your lab, you can use the instructions above for running the static website locally ☝️
- Ensure that the Codespaces repository that a person will fork is public and it allows forking.
- To configure Codespaces, you will have to configure Dev Containers to the repository that a person will fork.
- After you submit your PR, a peer will attempt the instructions.