wiki/docker-compose.yml

14 lines
267 B
YAML
Raw Permalink Normal View History

2024-02-14 23:12:15 +00:00
---
version: '3'
services:
2024-02-19 21:59:40 +00:00
community_wiki:
2024-02-14 23:12:15 +00:00
build:
context: .
dockerfile: Containerfile
2024-02-15 00:15:46 +00:00
command: ["mkdocs", "serve", "-w", "/wiki", "--dev-addr", "0.0.0.0:${PORT:-8000}"]
2024-02-14 23:12:15 +00:00
volumes:
- .:/wiki:z,rw
ports:
- "${PORT:-8000}:8000"