- Add Dockerfile with multi-stage build (node -> caddy) - Add docker-compose.yml for caddy-docker-proxy - Update astro.config.mjs with production site URL - Add Documentation link to README.md header - Add Documentation URL to pyproject.toml
14 lines
243 B
YAML
14 lines
243 B
YAML
services:
|
|
docs:
|
|
build: .
|
|
restart: unless-stopped
|
|
networks:
|
|
- caddy
|
|
labels:
|
|
caddy: ${DOCS_DOMAIN:-mcbluetooth.supported.systems}
|
|
caddy.reverse_proxy: "{{upstreams 80}}"
|
|
|
|
networks:
|
|
caddy:
|
|
external: true
|