Left #evernote for open source #joplin three months ago and still a #happy #user (I chose self-hosted webdav, but Nextcloud and OneDrive are also supported) twitter

BTW: For #joplin I am hosting a joplin server in a #docker now after #webdav became slow and cumbersome with more notes/data. Now a sync takes <1s.

I'll post my docker-compose.yml in a reply

For https://hub.docker.com/r/joplin/server, my docker-compose.yml (postgres pwd in .env)

```
#
name: joplin

services:
joplin:
container_name: joplin
image: joplin/server:${JOPLIN_VERSION:-latest}
volumes:
- /tank/joplin/:/data/
# JEROEN: pre-existing unix sockets:
- /var/run/postgresql/:/var/run/postgresql/
- /var/run/redis/:/var/run/redis/
env_file:
- .env
ports:
- 22300:22300
restart: always
healthcheck:
disable: false
```

joplin/server - Docker Image