Wallabag - Self-hosted read-it-later app
Everything you need to deploy Wallabag 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 Wallabag up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Wallabag with:
blastdock init wallabag
Interactive mode:
blastdock init wallabag -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 Wallabag installation with these configuration options.
Web interface port
Database password
Secret key
Complete Docker Compose configuration for Wallabag 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=wallabag
2: POSTGRES_DB=wallabag
volumes:
- /var/lib/postgresql/data
networks:
- wallabag_network
redis:
image: redis:6
container_name: {{ project_name }}_redis
restart: unless-stopped
networks:
- wallabag_network
wallabag:
image: wallabag/wallabag:latest
container_name: {{ project_name }}_wallabag
restart: unless-stopped
depends_on:
- postgres
- redis
ports:
- "80"
environment:
0: SYMFONY__ENV__DATABASE_DRIVER=pdo_pgsql
1: SYMFONY__ENV__DATABASE_HOST=postgres
2: SYMFONY__ENV__DATABASE_PORT=5432
3: SYMFONY__ENV__DATABASE_NAME=wallabag
4: SYMFONY__ENV__DATABASE_USER=wallabag
5: SYMFONY__ENV__DATABASE_PASSWORD={{ db_password }}
- SYMFONY__ENV__DOMAIN_NAME=http: //localhost:{{ port }}
6: SYMFONY__ENV__SERVER_NAME=Wallabag
7: SYMFONY__ENV__REDIS_HOST=redis
8: SYMFONY__ENV__REDIS_PORT=6379
9: SYMFONY__ENV__SECRET={{ secret }}
volumes:
- /var/www/wallabag/web/assets/images
networks:
- wallabag_network
volumes:
postgres_data:
driver: local
wallabag_images:
driver: local
networks:
wallabag_network:
driver: bridge