mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Reframe the deployment docs around the actual product story: Fabro runs as a server, and the only deployment question is where that server runs (laptop vs self-hosted Docker). Drop the Render, Fly.io, and DigitalOcean guides and their config files; keep Railway as the managed shortcut. - New: administration/deployment.mdx (overview, two-mode framing) - New: administration/self-host-docker.mdx (compose-first how-to) - Move: administration/deploy-server.mdx -> reference/server-operations.mdx (it was operational reference, not deploy guidance) - Delete: deploy-render.mdx, deploy-fly-io.mdx, deploy-digital-ocean.mdx - Delete: render.yaml, fly.toml, railway.toml, Dockerfile.deploy - docker-compose.yaml: load .env if present so users can drive the stack from a single env file end-to-end - Update internal links and the docs-test that pinned the old path
15 lines
300 B
YAML
15 lines
300 B
YAML
services:
|
|
fabro:
|
|
image: ghcr.io/fabro-sh/fabro:nightly
|
|
restart: unless-stopped
|
|
ports:
|
|
- "32276:32276"
|
|
volumes:
|
|
- fabro-storage:/storage
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
env_file:
|
|
- path: .env
|
|
required: false
|
|
|
|
volumes:
|
|
fabro-storage:
|