Skip to content
Merged
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
30 changes: 30 additions & 0 deletions blueprints/joplin-server/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
services:
joplin-db:
image: postgres:16-alpine
restart: unless-stopped
environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_DB: ${POSTGRES_DATABASE}
volumes:
- joplin_db_data:/var/lib/postgresql/data

joplin-server:
image: joplin/server:3.7.1
restart: unless-stopped
depends_on:
- joplin-db
environment:
APP_BASE_URL: ${APP_BASE_URL}
APP_PORT: ${APP_PORT}
DB_CLIENT: pg
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DATABASE: ${POSTGRES_DATABASE}
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PORT: 5432
POSTGRES_HOST: joplin-db
ports:
- "22300"

volumes:
joplin_db_data:
5 changes: 5 additions & 0 deletions blueprints/joplin-server/joplin-server.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions blueprints/joplin-server/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[variables]
main_domain = "${domain}"
postgres_password = "${password:32}"

[config]
mounts = []

[[config.domains]]
serviceName = "joplin-server"
port = 22300
host = "${main_domain}"

[config.env]
APP_BASE_URL = "http://${main_domain}"
APP_PORT = "22300"
POSTGRES_PASSWORD = "${postgres_password}"
POSTGRES_USER = "joplin"
POSTGRES_DATABASE = "joplin"
17 changes: 17 additions & 0 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -3347,6 +3347,23 @@
"open-source"
]
},
{
"id": "joplin-server",
"name": "Joplin Server",
"version": "3.7.1",
"description": "Joplin Server is the self-hosted sync backend for Joplin notes, notebooks, and attachments.",
"logo": "joplin-server.svg",
"links": {
"github": "https://github.com/laurent22/joplin",
"website": "https://joplinapp.org/",
"docs": "https://github.com/laurent22/joplin/tree/dev/packages/server"
},
"tags": [
"notes",
"sync",
"productivity"
]
},
{
"id": "kaneo",
"name": "Kaneo",
Expand Down
Loading