Joplin Server - Synchronization server for Joplin note-taking app
Everything you need to deploy Joplin with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Joplin up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Joplin with:
blastdock init joplin
Interactive mode:
blastdock init joplin -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Joplin installation with these configuration options.
Web interface port
Database password
Admin email
Admin password
Complete Docker Compose configuration for Joplin deployment.
version: '3.8'
services:
postgres:
image: postgres:13
container_name: {{ project_name }}_postgres
restart: unless-stopped
environment:
0: POSTGRES_PASSWORD={{ db_password }}
1: POSTGRES_USER=joplin
2: POSTGRES_DB=joplin
volumes:
- /var/lib/postgresql/data
networks:
- joplin_network
joplin:
image: joplin/server:latest
container_name: {{ project_name }}_joplin
restart: unless-stopped
depends_on:
- postgres
ports:
- "22300"
environment:
0: APP_PORT=22300
- APP_BASE_URL=http: //localhost:{{ port }}
1: DB_CLIENT=pg
2: POSTGRES_PASSWORD={{ db_password }}
3: POSTGRES_DATABASE=joplin
4: POSTGRES_USER=joplin
5: POSTGRES_PORT=5432
6: POSTGRES_HOST=postgres
7: ADMIN_EMAIL={{ admin_email }}
8: ADMIN_PASSWORD={{ admin_password }}
volumes:
- /app/data
networks:
- joplin_network
volumes:
postgres_data:
driver: local
joplin_data:
driver: local
networks:
joplin_network:
driver: bridge