#!/bin/bash

PORT=8000

podman build -t mkdocs-custom -f ./docker/docs/Dockerfile .
podman run --rm -it \
  -p ${PORT}:8000 \
  -v "$(pwd)/docs":/docs:Z \
  mkdocs-custom \
  serve -a 0.0.0.0:8000
