Seafile

Seafile - File hosting and synchronization platform

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

Installation Command

blastdock init seafile

Template Overview

Everything you need to deploy Seafile with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Seafile
seafileltd/seafile-mc:latest
Memcached
memcached:latest
Mysql
mysql:8
Categories
Database, File Management
Security Features
Password Protection, Admin User
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 Seafile up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Seafile with:

Terminal
blastdock init seafile

Interactive mode:

Terminal
blastdock init seafile -i

What's Included

Seafile
Container service
Memcached
Container service
Mysql
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 Seafile installation with these configuration options.

5
Required Fields
0
Optional Fields
2
Auto-Generated Passwords

Port

Web interface port

port
Default: 8080
Required: Yes

Mysql Password

MySQL password

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

Admin Email

Admin email

string
Required: Yes

Admin Password

Admin password

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

Server Name

Server name

string
Default: Seafile
Required: Yes

Docker Compose

Complete Docker Compose configuration for Seafile deployment.

3
Services
2
Volumes
1
Networks
1
Exposed Ports
docker-compose.yml
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_LOG_CONSOLE=true
    volumes:
      - /var/lib/mysql
    networks:
      - seafile_network

  memcached:
    image: memcached:latest
    container_name: {{ project_name }}_memcached
    restart: unless-stopped
    networks:
      - seafile_network

  seafile:
    image: seafileltd/seafile-mc:latest
    container_name: {{ project_name }}_seafile
    restart: unless-stopped
    depends_on:
      - mysql
      - memcached
    ports:
      - "80"
    environment:
      0: DB_HOST=mysql
      1: DB_ROOT_PASSWD={{ mysql_password }}
      2: TIME_ZONE=Europe/London
      3: SEAFILE_ADMIN_EMAIL={{ admin_email }}
      4: SEAFILE_ADMIN_PASSWORD={{ admin_password }}
      5: SEAFILE_SERVER_NAME={{ server_name }}
    volumes:
      - /shared
    networks:
      - seafile_network

volumes:
  mysql_data:
    driver: local

  seafile_data:
    driver: local

networks:
  seafile_network:
    driver: bridge