Shaarli

Shaarli - Personal, minimalist, super-fast, database free bookmarking service

8080
Default Port
1
Services
5.0/20
Complexity
Low
Memory Usage
Configuration

Installation Command

blastdock init shaarli

Template Overview

Everything you need to deploy Shaarli with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Shaarli
shaarli/shaarli:latest
Categories
Database
Resource Requirements
CPU: Low, Memory: Low , 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 Shaarli up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Shaarli with:

Terminal
blastdock init shaarli

Interactive mode:

Terminal
blastdock init shaarli -i

What's Included

Shaarli
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 Shaarli installation with these configuration options.

1
Required Fields
0
Optional Fields
0
Auto-Generated Passwords

Port

Web interface port

port
Default: 8080
Required: Yes

Docker Compose

Complete Docker Compose configuration for Shaarli deployment.

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