Quickstart
Quickstart
Section titled “Quickstart”Get a running Markdown preview in one command using the published ForgeGuard container image.
Prerequisites
Section titled “Prerequisites”- Docker Engine (or a compatible runtime) installed and running.
- A free local port. This guide uses
8080. - A modern browser (Chromium, Firefox, or WebKit based).
Run the container
Section titled “Run the container”The image is served by Nginx and listens on port 80 inside the container. Map it to a local
port:
docker run --rm -p 8080:80 ghcr.io/forgeguard-ai/markdown-live-preview:latestVerify
Section titled “Verify”Check that the container is serving the app:
curl --fail http://localhost:8080/A successful response returns the application’s HTML with exit code 0. Then open
http://localhost:8080 in a browser — you should see the editor on the left and a live preview
on the right, pre-filled with a Markdown syntax guide.
Next steps
Section titled “Next steps”- Learn the editor and preview: Editor and preview.
- Review what is stored and what leaves the browser: Privacy controls.
- Choose a durable deployment: Container, Compose & Portainer, or Kubernetes.
- Build from source instead of using the published image: Build and configuration.