Standard Notes - End-to-end encrypted note-taking app
Everything you need to deploy Standardnotes 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 Standardnotes up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Standardnotes with:
blastdock init standardnotes
Interactive mode:
blastdock init standardnotes -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 Standardnotes installation with these configuration options.
Web interface port
MySQL password
Secret key
Complete Docker Compose configuration for Standardnotes deployment.
version: '3.8'
services:
mysql:
image: mysql:8
container_name: {{ project_name }}_mysql
restart: unless-stopped
environment:
0: MYSQL_ROOT_PASSWORD={{ mysql_password }}
1: MYSQL_DATABASE=standardnotes
2: MYSQL_USER=standardnotes
3: MYSQL_PASSWORD={{ mysql_password }}
volumes:
- /var/lib/mysql
networks:
- standardnotes_network
standardnotes:
image: standardnotes/web:latest
container_name: {{ project_name }}_standardnotes
restart: unless-stopped
depends_on:
- mysql
ports:
- "3000"
environment:
0: NODE_ENV=production
1: DB_HOST=mysql
2: DB_PORT=3306
3: DB_DATABASE=standardnotes
4: DB_USERNAME=standardnotes
5: DB_PASSWORD={{ mysql_password }}
6: SECRET_KEY_BASE={{ secret_key }}
networks:
- standardnotes_network
volumes:
mysql_data:
driver: local
networks:
standardnotes_network:
driver: bridge