← Back to Index

README.md

Unitree Documentation Website

A simple HTML website displaying all Unitree documentation files in a Docker container.

Quick Start

docker-compose up --build

Then open your browser to: http://localhost:5000

Option 2: Using Docker directly

docker build -t unitree-docs .
docker run -p 5000:5000 unitree-docs

Then open your browser to: http://localhost:5000

Features

Files

How it Works

  1. The Flask app scans for all .md files in the directory
  2. The index page (/) displays links to all available documentation
  3. Each documentation file (/doc/<filename>) is rendered as HTML
  4. The app runs on port 5000 inside the container

Stopping the Container

Press Ctrl+C in the terminal where Docker is running, or:

docker-compose down