mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-07-31 09:17:11 -04:00
18 lines
476 B
YAML
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
|