Selfhosting Copyparty

YouTube Video Tutorial

If you prefer a visual walkthrough, you can watch our step-by-step video guide here:

Copyparty is a versatile and fast file server with a web UI.

Docker Compose Setup

version: "3"
services:
  copyparty:
    image: copyparty/copyparty:latest
    container_name: copyparty
    ports:
      - "3923:3923"
    volumes:
      - ./srv:/srv
    restart: unless-stopped