This commit is contained in:
Tomasz Borychowski 2021-01-27 21:15:31 +00:00
parent d3a47fa1f7
commit 960d7d7502
2 changed files with 51 additions and 0 deletions

View File

@ -201,6 +201,8 @@ So, without further ado, here's the current list:
- [reddit thread](https://www.reddit.com/r/selfhosted/comments/gwe18p/looking_for_a_neat_status_page_like/) - [reddit thread](https://www.reddit.com/r/selfhosted/comments/gwe18p/looking_for_a_neat_status_page_like/)
# Notes
- [Joplin Server](apps/notes/joplin.md)
# Notifications # Notifications
- [Notifiers by service](apps/notifications/notifiers-by-service.md) - comparison table - [Notifiers by service](apps/notifications/notifiers-by-service.md) - comparison table

49
apps/notes/joplin.md Normal file
View File

@ -0,0 +1,49 @@
# Joplin Server
Joplin is a free note taking app, available for desktop & mobile.
This is the Joplin sync server.
<br>
- [Homepage](https://joplinapp.org)
- [Github repo](https://github.com/laurent22/joplin/blob/dev/packages/server/README.md)
## docker-compose.yml
```yml
---
version: '3'
services:
db:
image: postgres:13.1
container_name: joplin-db
ports:
- "5432:5432"
restart: unless-stopped
environment:
- POSTGRES_DB=joplin
- POSTGRES_USER=joplin
- POSTGRES_PASSWORD=joplin
volumes:
- ./data:/var/lib/postgresql/data
app:
image: joplin/server:latest
container_name: joplin
depends_on:
- db
ports:
- "22300:22300"
restart: unless-stopped
environment:
- APP_BASE_URL=https://joplin.example.com
- APP_PORT=22300
- DB_CLIENT=pg
- POSTGRES_HOST=db
- POSTGRES_DATABASE=joplin
- POSTGRES_USER=joplin
- POSTGRES_PASSWORD=joplin
- POSTGRES_PORT=5432
```
### Login with
email: `admin@localhost`
password: `admin`