<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Prajwal</title>
    <description>The latest articles on DEV Community by Prajwal (@prajwal_ee759ffa925a7429e).</description>
    <link>https://dev.to/prajwal_ee759ffa925a7429e</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3698384%2Fcf592bbc-2f2d-44f7-ac2b-a9e585a63899.png</url>
      <title>DEV Community: Prajwal</title>
      <link>https://dev.to/prajwal_ee759ffa925a7429e</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/prajwal_ee759ffa925a7429e"/>
    <language>en</language>
    <item>
      <title>Build Your Own Private Cloud in 5 Minutes with Docker, Syncthing &amp; Tailscale ☁️🔒</title>
      <dc:creator>Prajwal</dc:creator>
      <pubDate>Wed, 07 Jan 2026 12:09:08 +0000</pubDate>
      <link>https://dev.to/prajwal_ee759ffa925a7429e/build-your-own-private-cloud-in-5-minutes-with-docker-syncthing-tailscale-d4b</link>
      <guid>https://dev.to/prajwal_ee759ffa925a7429e/build-your-own-private-cloud-in-5-minutes-with-docker-syncthing-tailscale-d4b</guid>
      <description>&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;We all rely on cloud storage—Google Drive, Dropbox, iCloud. But sometimes, you just want total control over your data. You want privacy, speed, and zero subscription fees.&lt;/p&gt;

&lt;p&gt;I recently built a Private Backup Cloud project that solves this problem using open-source tools. It’s self-hosted, encrypted, and accessible from anywhere without opening any public ports on your router.&lt;/p&gt;

&lt;p&gt;In this post, I’ll show you how I built it using Docker, Syncthing, File Browser, and Tailscale.&lt;/p&gt;

&lt;h2&gt;
  
  
  🤔 Why Build This?
&lt;/h2&gt;

&lt;p&gt;Privacy: Your data stays on your devices. No "scanning" by big tech.&lt;/p&gt;

&lt;p&gt;Security: Uses a private VPN (Tailscale) so you don't need to expose your IP to the public internet.&lt;/p&gt;

&lt;p&gt;Cost: Free (if using existing hardware like an old laptop, Raspberry Pi, or the free tier of a VPS).&lt;/p&gt;

&lt;p&gt;Simplicity: Deploys in minutes with Docker Compose.&lt;/p&gt;

&lt;h2&gt;
  
  
  🛠️ The Tech Stack
&lt;/h2&gt;

&lt;p&gt;Here are the heroes of this project:&lt;/p&gt;

&lt;p&gt;Docker: For containerizing the applications so they run anywhere.&lt;/p&gt;

&lt;p&gt;Syncthing: The engine that syncs files continuously between your devices (phone, laptop, server).&lt;/p&gt;

&lt;p&gt;Tailscale: A zero-config VPN that connects your devices as if they were on the same local network (Meshnet).&lt;/p&gt;

&lt;p&gt;File Browser: (Optional) A beautiful web interface to manage your files, just like Google Drive.&lt;/p&gt;

&lt;h2&gt;
  
  
  Architecture
&lt;/h2&gt;

&lt;p&gt;The setup is simple:&lt;/p&gt;

&lt;p&gt;Tailscale connects all your devices (Laptop, Phone, Server) into a secure private network.&lt;/p&gt;

&lt;p&gt;Syncthing runs in a Docker container, syncing folders in the background.&lt;/p&gt;

&lt;p&gt;File Browser runs in another container, giving you a Web UI to view, download, and upload files remotely.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0x9rqq17u9tbiyb6cwdc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0x9rqq17u9tbiyb6cwdc.png" alt=" " width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  How to Deploy (The "Advanced" Setup)
&lt;/h2&gt;

&lt;p&gt;Let's go for the full experience with both the Sync engine and the Web Dashboard.&lt;/p&gt;

&lt;p&gt;Step 1: Prerequisites&lt;br&gt;
Make sure you have Docker and Docker Compose installed. You also need to install Tailscale on your host machine and log in.&lt;/p&gt;

&lt;p&gt;Step 2: Prepare the Environment&lt;br&gt;
We need to create a few folders and a database file for the File Browser to work correctly.&lt;/p&gt;

&lt;p&gt;Bash&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;mkdir -p fb_config
touch fb_config/settings.json
touch fb_config/filebrowser.db
echo "{}" &amp;gt; fb_config/settings.json
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Step 3: The Docker Compose File&lt;br&gt;
Create a docker-compose.yml file and paste this in. This sets up both Syncthing and the File Browser dashboard.&lt;/p&gt;

&lt;p&gt;YAML&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;version: '3'
services:
  syncthing:
    image: lscr.io/linuxserver/syncthing:latest
    container_name: syncthing
    hostname: syncthing
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Asia/Kolkata # Change this to your timezone
    volumes:
      - ./config:/config
      - ./data:/data
    ports:
      - 8384:8384
      - 22000:22000/tcp
      - 22000:22000/udp
      - 21027:21027/udp
    restart: always

  filebrowser:
    image: filebrowser/filebrowser:latest
    container_name: filebrowser
    user: 1000:1000
    volumes:
      - ./data:/srv
      - ./fb_config/filebrowser.db:/database/filebrowser.db
      - ./fb_config/settings.json:/config/settings.json
    ports:
      - 8080:80
    restart: always
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Step 4: Launch It!&lt;br&gt;
Bash&lt;/p&gt;

&lt;p&gt;docker-compose up -d&lt;/p&gt;

&lt;h2&gt;
  
  
  Accessing Your Cloud
&lt;/h2&gt;

&lt;p&gt;Because you are using Tailscale, you can access this safely from anywhere (even a coffee shop) using your Tailscale IP.&lt;/p&gt;

&lt;p&gt;Syncthing UI: &lt;a href="http://YOUR-TAILSCALE-IP:8384" rel="noopener noreferrer"&gt;http://YOUR-TAILSCALE-IP:8384&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Use this to link your phone or laptop and start syncing folders.&lt;/p&gt;

&lt;p&gt;File Dashboard: &lt;a href="http://YOUR-TAILSCALE-IP:8080" rel="noopener noreferrer"&gt;http://YOUR-TAILSCALE-IP:8080&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Default Login: admin / admin (Change this immediately!)&lt;/p&gt;

&lt;p&gt;Now you have a fully functional private cloud that looks like this:&lt;/p&gt;

&lt;p&gt;(You can add a screenshot of the File Browser UI here)&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;This project is a perfect weekend build for anyone interested in Self-Hosting or DevOps. It separates your data from big providers and gives you total ownership.&lt;/p&gt;

&lt;p&gt;If you want to try this out, check out the full repository below. It includes a basic setup (lite version) and more detailed instructions.&lt;/p&gt;

&lt;p&gt;🔗 GitHub Repository: &lt;a href="https://github.com/prajwal-1703/private_backup_cloud_syncthing.git" rel="noopener noreferrer"&gt;private_backup_cloud_syncthing&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Let me know in the comments if you have any questions or ideas for improvements! Happy hosting! &lt;/p&gt;

</description>
      <category>devops</category>
      <category>docker</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
