Wallabag

Wallabag - Self-hosted read-it-later app

8080
Default Port
3
Services
19.0/20
Complexity
Medium
Memory Usage
Configuration

Installation Command

blastdock init wallabag

Template Overview

Everything you need to deploy Wallabag with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Wallabag
wallabag/wallabag:latest
Redis
redis:6
Postgres
postgres:13
Categories
Database
Security Features
Password Protection
Resource Requirements
CPU: Medium, Memory: Medium , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Wallabag up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Wallabag with:

Terminal
blastdock init wallabag

Interactive mode:

Terminal
blastdock init wallabag -i

What's Included

Wallabag
Container service
Redis
Container service
Postgres
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Wallabag installation with these configuration options.

3
Required Fields
0
Optional Fields
2
Auto-Generated Passwords

Port

Web interface port

port
Default: 8080
Required: Yes

Db Password

Database password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Secret

Secret key

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Docker Compose

Complete Docker Compose configuration for Wallabag deployment.

3
Services
2
Volumes
1
Networks
1
Exposed Ports
docker-compose.yml
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