Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions apps/outline/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"utilities"
],
"description": "Outline is a self-hosted knowledge base and wiki, a solid alternative to Notion or Confluence. This bundle ships Outline itself plus PostgreSQL, Redis, a small built-in OIDC provider for login, and an nginx reverse proxy that serves both on a single origin. Outline has no local account signup, so the bundled OIDC provider supplies the sign-in flow: you set a username and password at install time. Because Outline builds absolute URLs and OIDC callbacks from its configured domain, this app must be exposed on its own domain over HTTPS.",
"tipi_version": 1,
"version": "1.9.2",
"tipi_version": 2,
"version": "1.10.0",
"source": "https://github.com/outline/outline",
"website": "https://getoutline.com",
"exposable": true,
Expand All @@ -22,7 +22,7 @@
"amd64"
],
"created_at": 1787690858000,
"updated_at": 1787690858000,
"updated_at": 1788332170801,
"form_fields": [
{
"type": "text",
Expand Down Expand Up @@ -84,4 +84,4 @@
"hint": "Auto-generated. Django secret key for the bundled OIDC provider. Leave as generated."
}
]
}
}
2 changes: 1 addition & 1 deletion apps/outline/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
# the app's private network. URL must match the domain you expose, since
# Outline builds absolute links and the OIDC redirect URI from it.
outline:
image: outlinewiki/outline:1.9.2
image: outlinewiki/outline:1.10.0
environment:
- DATABASE_URL=postgres://outline:${OUTLINE_PG_PASSWORD}@outline-postgres:5432/outline
- REDIS_URL=redis://outline-redis:6379
Expand Down