Plausible - Privacy-friendly analytics
Everything you need to deploy Plausible 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 Plausible up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Plausible with:
blastdock init plausible
Interactive mode:
blastdock init plausible -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 Plausible installation with these configuration options.
HTTP port
Admin email
Admin password
PostgreSQL password
Secret key base
Site domain
Complete Docker Compose configuration for Plausible deployment.
version: '3.8'
services:
plausible:
image: plausible/analytics:latest
container_name: {{ project_name }}_plausible
restart: unless-stopped
depends_on:
- postgresql
- clickhouse
ports:
- "8000"
environment:
0: ADMIN_USER_EMAIL={{ admin_email }}
1: ADMIN_USER_NAME=admin
2: ADMIN_USER_PWD={{ admin_password }}
- BASE_URL=http: //{{ domain }}:{{ http_port }}
3: SECRET_KEY_BASE={{ secret_key_base }}
- DATABASE_URL=postgres: //postgres:{{ postgres_password }}@postgresql:5432/plausible
- CLICKHOUSE_DATABASE_URL=http: //clickhouse:8123/plausible
networks:
- plausible_network
postgresql:
image: postgres:14-alpine
container_name: {{ project_name }}_postgresql
restart: unless-stopped
environment:
0: POSTGRES_PASSWORD={{ postgres_password }}
1: POSTGRES_DB=plausible
volumes:
- /var/lib/postgresql/data
networks:
- plausible_network
clickhouse:
image: clickhouse/clickhouse-server:22.6-alpine
container_name: {{ project_name }}_clickhouse
restart: unless-stopped
volumes:
- /var/lib/clickhouse
- /etc/clickhouse-server/users.xml
networks:
- plausible_network
volumes:
postgres_data:
driver: local
clickhouse_data:
driver: local
networks:
plausible_network:
driver: bridge