Shaarli - Personal, minimalist, super-fast, database free bookmarking service
Everything you need to deploy Shaarli 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 Shaarli up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Shaarli with:
blastdock init shaarli
Interactive mode:
blastdock init shaarli -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 Shaarli installation with these configuration options.
Web interface port
Complete Docker Compose configuration for Shaarli deployment.
version: '3.8'
services:
shaarli:
image: shaarli/shaarli:latest
container_name: {{ project_name }}_shaarli
restart: unless-stopped
ports:
- "80"
volumes:
- /var/www/shaarli/data
networks:
- shaarli_network
volumes:
shaarli_data:
driver: local
networks:
shaarli_network:
driver: bridge