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

16 lines
314 B
YAML

# Docker Compose file for the AliasVault documentation (Docusaurus).
#
# Builds the static site and serves it with nginx in production mode.
#
# Usage:
# docker compose up -d --build
# docker compose down
#
services:
docs:
build:
context: .
ports:
- "4000:80"
restart: unless-stopped