Open the server Apps tab
Select the tutorial-vps VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.


Minimalist file sharing service
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the PicoShare template in Server Compass to deploy minimalist file sharing on your VPS, then verify the web UI in a browser.
Select the tutorial-vps VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.

Click New App and choose the template deployment path so Server Compass can load the built-in catalog.

Use the template picker search to find PicoShare in the Server Compass template catalog.

Choose the PicoShare template. Server Compass fills the file sharing service, persistent data volume, generated shared secret, and public port.

Confirm the app name, generated shared secret, and compose service. In this run, the app was named picoshare-demo and used host port 4001.

Review the generated compose settings, confirm the PicoShare web port is available, and click Deploy.

Keep the deployment modal open while Server Compass uploads the compose file, pulls the PicoShare image, starts the container, and verifies the stack.

After deployment finishes, return to the Apps tab and confirm the PicoShare app is marked Running with its application URL available.

Open the application URL in a browser. The PicoShare web UI confirms the file sharing service is reachable.

The PicoShare web interface loaded successfully from the deployed container.
It deploys the PicoShare container with a persistent data volume, generated shared secret, and public web port.
The tutorial used host port 4001, which maps to the PicoShare web UI on container port 4001.
The template generates a shared secret and passes it to PicoShare as PS_SHARED_SECRET. Keep that value private.
No. The deployment guide should live on the PicoShare template detail page and be linked from the reusable template deployment docs page.
Prefer the command line? Follow this step-by-step guide to deploy PicoShare manually on your VPS.
Begin by establishing a secure connection to your server through the terminal.
# Access your VPS
ssh root@YOUR_SERVER_IP
# With SSH key authentication
ssh -i ~/.ssh/your-private-key root@YOUR_SERVER_IPFirst time? Ensure Docker is installed first: curl -fsSL https://get.docker.com | sh
Create a dedicated folder for your application files.
# Create and navigate to project directory
mkdir -p ~/apps/picoshare
cd ~/apps/picoshareCreate the following docker-compose.yml in your project directory:
services:
picoshare:
image: mtlynch/picoshare:latest
ports:
- "4001:4001"
environment:
- PS_SHARED_SECRET=<your-shared-secret>
volumes:
- picoshare_data:/data
restart: unless-stopped
volumes:
picoshare_data:
PORTHost port(default: 4001)SHARED_SECRETShared secretRun Docker Compose to launch your application.
# Launch the stack
docker compose up -d
# Verify container status
docker compose ps
# Follow the logs
docker compose logs --followConfigure UFW to allow traffic to your application.
# Allow the application port through firewall
sudo ufw allow 4001/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:4001Deploy PicoShare with a beautiful UI instead. No SSH, no YAML editing, no terminal commands. Just click, configure, and deploy in under 3 minutes.
After deploying PicoShare with Server Compass, complete these steps to finish setup
Access with shared secret
Upload files
Share links
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting PicoShare
Simply download Server Compass, connect to your VPS, and select PicoShare from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
PicoShare requires a minimum of 64MB RAM. We recommend a VPS with at least 1024MB RAM for optimal performance. Any modern Linux server with Docker support will work.
Yes! Server Compass provides volume mapping that allows you to import existing data. You can also use standard PicoShare backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest PicoShare image will be pulled and deployed with zero downtime.
PicoShare is open-source software. You only pay for your VPS hosting (typically $5-20/month) and optionally Server Compass ($29 one-time). No subscription fees or per-seat pricing.
Download Server Compass and deploy PicoShare to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass