add 23 requested stacks from container-requests list

Tdarr, Grocy, Dashy, Traefik, Fider, Twenty CRM, Outline, Chatwoot,
ComfyUI, Picard, VoidAuth, Tinyauth, Tugtainer, Sencho, Authelia,
Mail Archiver, ITFlow, Notifuse, Maybe Finance, DumbBudget, Silverpeas,
Portus, Obsidian — all as _dev stacks following repo conventions.

Harbor and Exportify moved to 'Apps That Will Not be in the Repo'
(installer-generated compose / no published image).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
code
2026-07-16 06:24:26 +00:00
co-authored by Claude Fable 5
parent b332b8a581
commit b4375c3e09
70 changed files with 2274 additions and 56 deletions
+62
View File
@@ -0,0 +1,62 @@
# Outline
## Overview
Team knowledge base and documentation wiki.
## Project Details
- **Project Repository:** [GitHub](https://github.com/outline/outline)
- **Container Image:** [outlinewiki/outline](https://hub.docker.com/r/outlinewiki/outline)
- **Documentation:** [docs.getoutline.com](https://docs.getoutline.com/s/hosting)
- **Reverse Proxy Port:** `3000`
## Getting Started
1. Start the container: `docker compose up -d`
2. Open http://localhost:3000 in your browser
3. Follow the initial setup wizard to configure the application
## Environment Variable Notes
OUTLINE_SECRET_KEY / OUTLINE_UTILS_SECRET generate each with `openssl rand -hex 32`
OUTLINE_URL public URL, must match how you access it
## Volume Notes
/var/lib/outline/data local file/attachment storage
/var/lib/postgresql/data PostgreSQL data
## Network Notes
Requires proxy network
## Docker Run
```bash
docker run -d \
--name outline \
-p 3000:3000 \
-e URL=http://localhost:3000 \
-e SECRET_KEY=$(openssl rand -hex 32) \
-e UTILS_SECRET=$(openssl rand -hex 32) \
-e DATABASE_URL=postgres://outline:pass@dbhost:5432/outline \
-e PGSSLMODE=disable \
-e REDIS_URL=redis://redishost:6379 \
outlinewiki/outline:latest
```
## Additional Notes / Gotchas
Outline has no built-in username/password login — you must configure an auth provider (OIDC, Google, Slack, etc.) via additional env vars before anyone can sign in. Authentik or Authelia from this repo work as OIDC providers.
## Dockhand Stack, Deploy from Git
Cookbooks Repository
stackname: outline_dev
Compose file path: outline_dev/compose.yaml
Additional env file (optional): outline_dev/sample.env
Then "Load" outline_dev/sample.env into the Environmental variables in dockhand
Create the Stack
+46
View File
@@ -0,0 +1,46 @@
services:
outline:
image: ${OUTLINE_IMAGE:-outlinewiki/outline:latest}
restart: ${OUTLINE_RESTART:-unless-stopped}
volumes:
- ${VOL_PATH:-/data}/outline/data:/var/lib/outline/data
environment:
- URL=${OUTLINE_URL:-http://localhost:3000}
- SECRET_KEY=${OUTLINE_SECRET_KEY:-ChangeThisPassword}
- UTILS_SECRET=${OUTLINE_UTILS_SECRET:-ChangeThisPassword}
- DATABASE_URL=postgres://outline:${OUTLINE_DB_PASSWORD:-ChangeThisPassword}@outline-db:5432/outline
- PGSSLMODE=disable
- REDIS_URL=redis://outline-redis:6379
- FILE_STORAGE=local
- FILE_STORAGE_LOCAL_ROOT_DIR=/var/lib/outline/data
ports:
- ${OUTLINE_PORT:-3000}:3000
networks:
- proxy
- internal
depends_on:
- outline-db
- outline-redis
outline-db:
image: ${POSTGRES_IMAGE:-postgres:16-alpine}
restart: ${OUTLINE_RESTART:-unless-stopped}
volumes:
- ${VOL_PATH:-/data}/outline/db:/var/lib/postgresql/data
environment:
- POSTGRES_DB=outline
- POSTGRES_USER=outline
- POSTGRES_PASSWORD=${OUTLINE_DB_PASSWORD:-ChangeThisPassword}
networks:
- internal
outline-redis:
image: ${REDIS_IMAGE:-redis:7-alpine}
restart: ${OUTLINE_RESTART:-unless-stopped}
networks:
- internal
networks:
proxy:
external: true
internal:
+11
View File
@@ -0,0 +1,11 @@
# Outline
VOL_PATH=/data
OUTLINE_IMAGE=outlinewiki/outline:latest
POSTGRES_IMAGE=postgres:16-alpine
REDIS_IMAGE=redis:7-alpine
OUTLINE_RESTART=unless-stopped
OUTLINE_PORT=3000
OUTLINE_URL=http://localhost:3000
OUTLINE_SECRET_KEY=ChangeThisPassword
OUTLINE_UTILS_SECRET=ChangeThisPassword
OUTLINE_DB_PASSWORD=ChangeThisPassword