What you'll need

  • Podman
  • Docker
  • Knowledge (basic) Linux

Limits

File Size Limits: Files larger than 100 MB are blocked, and files over 50 MiB will trigger a warning. For large files (like images, videos, or datasets), you must use Git Large File Storage

Only good for pics and text unless if you use git lfs

Only issue for most people:

Pricing Options
Git LFS is open-source and free to use, but remote hosting services have limits. For instance, GitHub and Bitbucket offer a set amount of storage and bandwidth for free, with options to purchase additional capacity (e.g., 100 GB for $10/month on Bitbucket).

For radicle:

Git LFS (Large File Storage) and
Radicle are related in that they both interact with the Git ecosystem, but they are separate tools with different purposes. Radicle is currently considering adding support for LFS or similar solutions like git-annex for handling large files.

Current Status regarding LFS: Radicle uses standard Git for data transfer and is designed to handle moderately-sized binaries. Its developers have stated they are considering adding support for solutions like Git LFS or git-annex in the future to better manage very large files, such as AI models and datasets, within the decentralized network.

Docker compose

version: '3.8'

services:
  radicle:
    image: ff0x/radicle:latest
    container_name: radicle-seed
    restart: unless-stopped
    environment:
      - RAD_ALIAS=anon
    volumes:
      - radicle-data:/app/radicle
      # Mount with read-write permissions
      - /path/to/your/radicle/data:/mnt/repos:rw
    ports:
      - "8776:8776"
      - "8777:8777"
    networks:
      - radicle-network

volumes:
  radicle-data:

networks:
  radicle-network:
    driver: bridge

Input these in the docker image with the gui of your choice.

mkdir -p ./targetdir && cp /mnt/repos/ ./targetdir && cd targetdir && git config --global user.email "[email protected]" && git config --global user.name "name" && git init && git add . && git commit -m "."
Edit

Pub: 07 Feb 2026 00:50 UTC

Edit: 07 Feb 2026 01:08 UTC

Views: 27