Files
aliasvault/docs/docker-compose.yml
2026-06-19 11:21:19 +02:00

18 lines
476 B
YAML

# Docker Compose file for the AliasVault documentation (Docusaurus).
#
# Serves the pre-built static site (`build/`) with nginx. The site has
# to be built manually with `npm ci && npm run build` first (in CI or manually locally).
#
# Usage (after `npm ci && npm run build`):
# npm ci && npm run build
# docker compose up -d --build
# docker compose down
#
services:
docs:
build:
context: .
ports:
- "127.0.0.1:5191:80"
restart: unless-stopped