Skip to content

SeaweedFS

Description / nameInput element
Container Registry
Container Configuration Root Path
Timezone
User ID
Group ID
SeaweedFS Host Port
SeaweedFS /config Path
SeaweedFS /data Path

Build Status Last Commit

SeaweedFS is a fast distributed storage system for blobs, objects, files, and a data lake, scaling to billions of files. It provides an S3 API, POSIX FUSE mount, WebDAV, and a Filer with cross-cluster active-active replication.

Port 8333
Registry ghcr.io/daemonless/seaweedfs
Daemonless daemonless/seaweedfs
Source seaweedfs/seaweedfs
Website seaweedfs.com

Version Tags

Tag Description Best For
latest Upstream Binary. Built from official release. Alternative build.
pkg FreeBSD Quarterly. Uses stable, tested packages. Production stability.
pkg-latest FreeBSD Latest. Rolling package updates. Newest FreeBSD packages.

Root Privileges Required

Podman on FreeBSD currently requires root. All commands must be run as root (or via doas/sudo).

Before deploying, ensure your host environment is ready. See the Quick Start Guide for host setup instructions.

Deployment

services:
  seaweedfs:
    image: ghcr.io/daemonless/seaweedfs:latest
    container_name: seaweedfs
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=UTC
      - SEAWEEDFS_MODE=server
    volumes:
      - "/path/to/containers/seaweedfs:/config"
      - "/path/to/containers/seaweedfs/data:/data"
    ports:
      - 8333:8333
      - 9333:9333
      - 8888:8888
    restart: unless-stopped
DIRECTOR_PROJECT=seaweedfs
PUID=1000
PGID=1000
TZ=UTC
SEAWEEDFS_MODE=server
options:
  - virtualnet: ':<random> default'
  - nat:
services:
  seaweedfs:
    name: seaweedfs
    options:
      - container: 'boot args:--pull'
    oci:
      user: root
      environment:
        - PUID: !ENV '${PUID}'
        - PGID: !ENV '${PGID}'
        - TZ: !ENV '${TZ}'
        - SEAWEEDFS_MODE: !ENV '${SEAWEEDFS_MODE}'
    volumes:
      - SEAWEEDFS_CONFIG_PATH: /config
      - SEAWEEDFS_DATA_PATH: /data
volumes:
  SEAWEEDFS_CONFIG_PATH:
    device: '/path/to/containers/seaweedfs'
  SEAWEEDFS_DATA_PATH:
    device: '/path/to/containers/seaweedfs/data'
ARG tag=latest

OPTION overwrite=force
OPTION from=ghcr.io/daemonless/seaweedfs:${tag}
podman run -d --name seaweedfs \
  -p 8333:8333 \
  -p 9333:9333 \
  -p 8888:8888 \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=UTC \
  -e SEAWEEDFS_MODE=server \
  -v /path/to/containers/seaweedfs:/config \
  -v /path/to/containers/seaweedfs/data:/data \
  ghcr.io/daemonless/seaweedfs:latest
- name: Deploy seaweedfs
  containers.podman.podman_container:
    name: seaweedfs
    image: ghcr.io/daemonless/seaweedfs:latest
    state: started
    restart_policy: always
    env:
      PUID: "1000"
      PGID: "1000"
      TZ: "UTC"
      SEAWEEDFS_MODE: "server"
    ports:
      - "8333:8333"
      - "9333:9333"
      - "8888:8888"
    volumes:
      - "/path/to/containers/seaweedfs:/config"
      - "/path/to/containers/seaweedfs/data:/data"

Interactive Configuration

Parameters

Environment Variables

Variable Default Description
PUID 1000 User ID for the application process
PGID 1000 Group ID for the application process
TZ UTC Timezone for the container
SEAWEEDFS_MODE server SeaweedFS role: server (default, all-in-one S3+filer+volume), mini (turnkey + Admin UI), master, volume, filer, or s3

Volumes

Path Description
/config TOML config files (filer.toml, security.toml) + s3.json identities
/data Object / volume storage data

Ports

Port Protocol Description
8333 TCP S3 API
9333 TCP Master UI / API
8888 TCP Filer UI / API

Implementation Details

  • Architectures: amd64
  • User: bsd (UID/GID set via PUID/PGID). Defaults to 1000:1000.
  • Base: Built on ghcr.io/daemonless/base (FreeBSD 15.0).

Need help? Join our Discord community.