Provide a secure, self-hosted environment to share files directly with clients while keeping data private. This open-source solution gives you absolute authority over your infrastructure, ensuring sensitive documents never pass through third-party servers. Easily manage client access, track activity, and customize the experience to match professional workflows.
Key features include:
services:
projectsend:
image: lscr.io/linuxserver/projectsend:latest
container_name: projectsend
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- ./config:/config
- ./data:/data
ports:
- 8080:80
restart: unless-stopped
depends_on:
- mariadb
mariadb:
image: lscr.io/linuxserver/mariadb:latest
container_name: projectsend_db
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- MYSQL_ROOT_PASSWORD=${DB_ROOT_PASSWORD}
- MYSQL_DATABASE=projectsend
- MYSQL_USER=projectsend
- MYSQL_PASSWORD=${DB_PASSWORD}
volumes:
- ./db_data:/config
restart: unless-stoppedDB_ROOT_PASSWORD=your_secure_root_password
DB_PASSWORD=your_secure_db_passwordAuto-fetched 13 minutes ago
Auto-fetched 13 minutes ago