Run locally
Tested and verified to launch successfully.
Terminal
$ npx launchfile up outline Requires Docker Desktop. No source code needed — pulls pre-built images and starts outline with all dependencies.
Image:
outlinewiki/outline:latest Launchfile
View on GitHub
# yaml-language-server: $schema=https://launchfile.dev/schema/v1
version: launch/v1
name: outline
description: "Modern team knowledge base for collaborative documentation"
repository: https://github.com/outline/outline
logo: https://raw.githubusercontent.com/outline/outline/main/public/images/outline-logo.svg
# NOTE: Outline also supports S3-compatible storage for file uploads.
# Without it, local filesystem storage is used. For production, consider
# configuring AWS_S3_UPLOAD_BUCKET_URL and related env vars.
image: outlinewiki/outline:latest
provides:
- protocol: http
port: 3000
exposed: true
requires:
- type: postgres
set_env:
DATABASE_URL: $url
- type: redis
set_env:
REDIS_URL: $url
env:
SECRET_KEY:
generator: secret
sensitive: true
UTILS_SECRET:
generator: secret
sensitive: true
URL:
required: true
description: "Public-facing URL of the Outline instance"
health: /_health
restart: always Test Results
Last Tested
2026-04-08
Health Check
Passing
Startup Time
68s
Total Disk
1264 MB
Required Services
postgresredis
Learn More
Spec references for features used in this Launchfile.