Close Menu

    Subscribe to Updates

    Get the latest Tech news from SynapseFlow

    What's Hot

    Restless Kīlauea Launches Lava and Ash

    March 20, 2026

    Android Canary update brings big changes, but nothing is guaranteed

    March 20, 2026

    3 cool self-hosted projects to spin up this weekend

    March 20, 2026
    Facebook X (Twitter) Instagram
    • Homepage
    • About Us
    • Contact Us
    • Privacy Policy
    Facebook X (Twitter) Instagram YouTube
    synapseflow.co.uksynapseflow.co.uk
    • AI News & Updates
    • Cybersecurity
    • Future Tech
    • Reviews
    • Software & Apps
    • Tech Gadgets
    synapseflow.co.uksynapseflow.co.uk
    Home»Software & Apps»3 cool self-hosted projects to spin up this weekend
    3 cool self-hosted projects to spin up this weekend
    Software & Apps

    3 cool self-hosted projects to spin up this weekend

    The Tech GuyBy The Tech GuyMarch 20, 2026No Comments6 Mins Read0 Views
    Share
    Facebook Twitter LinkedIn Pinterest Email
    Advertisement


    Self-hosting has a reputation for being complicated. The kind of hobby that involves racks of hardware, endless configuration files, and a weekend disappearing into Docker logs. That can certainly happen if you want it to. But it doesn’t have to.

    Advertisement

    Some of the most satisfying self-hosted projects are surprisingly small. A single container, a simple web interface, and suddenly you’ve built a service that normally lives somewhere in the cloud. If you have a spare computer, an old Raspberry Pi, or even a forgotten desktop sitting in a closet, you already have everything you need to get started. Here are three genuinely useful self-hosted projects you can spin up this weekend.

    Navidrome

    Your own Spotify server without subscriptions or algorithms

    navidrome web interface
    Screenshot by David Rutland – no attribution

    If you still have a folder somewhere filled with MP3s or FLAC files, Navidrome can turn it into a personal music streaming platform. Navidrome scans your music library and organizes it into a clean web interface where you can browse artists, albums, and playlists much like you would in Spotify or Apple Music. The difference is that the music lives entirely on your own server. Once it’s running, you can stream your collection from a browser or use any Subsonic-compatible mobile app to listen on your phone. The interface is fast, simple, and surprisingly polished for such a lightweight project.

    For people who miss the days of actually owning their music instead of renting it from streaming services, Navidrome feels oddly liberating.

    Installing Navidrome

    The easiest way to run Navidrome is with Docker. First, create a folder for Navidrome’s data and another one for your music library:

    mkdir -p ~/navidrome/data
    mkdir -p ~/music

    Then start the container:

    docker run -d \
    --name navidrome \
    -p 4533:4533 \
    -v ~/navidrome/data:/data \
    -v ~/music:/music:ro \
    -e ND_SCANINTERVAL=1m \ --restart unless-stopped \
    deluan/navidrome

    After the container starts, open a browser and go to:

    http://localhost:4533

    Create an admin account and Navidrome will begin scanning your music folder automatically. If you want to access Navidrome from another device on your home network, simply replace `localhost` with the IP address of the machine running the server. For example:

    http://192.168.1.42:4533

    That lets you open your music server from another computer, tablet, or phone connected to the same network.

    Build your own algorithm-free news feed

    freshrss populated interface

    screenshot by David Rutland – no attribution

    Social media has slowly replaced the open web as the way many people discover articles and news. Unfortunately, that also means letting opaque algorithms decide what you see. FreshRSS offers a refreshing alternative. It’s a self-hosted RSS reader that collects articles from the sites you actually care about and presents them in a simple, distraction-free interface. Instead of endless scrolling through social feeds, you get a clean stream of posts from your favorite blogs, tech sites, newsletters, and podcasts.freshrss

    Once you start adding feeds, the system quietly builds your own personalized news hub. The appeal becomes obvious very quickly. There are no ads injected between posts, no engagement tricks, and no mysterious ranking system deciding what deserves your attention. Everything appears in chronological order. For writers, researchers, or anyone who follows multiple blogs and publications, it can quickly become one of the most useful services on your server.

    FreshRSS is simple to install and the best way is to deploy it with Docker. Create a folder for the application data:

    mkdir -p ~/freshrss/data

    Then run the container:

    docker run -d \ --name freshrss \​​​​​​​ -p 8080:80 \​​​​​​​ -v ~/freshrss/data:/var/www/FreshRSS/data \​​​​​​​ --restart unless-stopped \​​​​​​​ freshrss/freshrss

    Once the container is running, open your browser and visit:

    http://localhost:8080

    The setup wizard will guide you through creating your first user account and configuring the RSS reader. Just like with Navidrome, you can also access FreshRSS from other devices on your network by using the server’s IP address instead of `localhost`, such as:

    http://192.168.1.42:8080

    Immich

    Build your own Google Photos replacement

    If there’s one cloud service people rely on more than they realize, it’s photo storage.

    Phones quietly upload thousands of photos and videos to services like Google Photos or iCloud. It’s convenient, but it also means handing over a huge archive of personal memories to someone else’s servers. Immich offers a different approach. It’s a self-hosted photo backup platform that gives you many of the same features as Google Photos, except the entire library lives on hardware you control.

    Once Immich is running, you install the mobile app on your phone and it starts automatically backing up photos and videos to your server. From there you can browse your library through a timeline interface that feels surprisingly close to the experience of commercial photo services. You can create albums, search your photos, and organize your growing library just like you would with mainstream cloud platforms.

    immich

    OS

    Linux, Windows, macOS, Android, iOS

    Price model

    Free

    Immich is a self-hosted solution that allows you back up, organize, and manage your photos on your own server. It allows you to browse your photos and videos with ease and does not sacrifice privacy. 


    Immich does require a bit more horsepower than the other projects in this list, so it’s best suited for an old desktop, mini PC, or home server rather than very small devices.

    Installing Immich

    Immich is typically deployed with Docker Compose. Create a project folder and move into it:

    mkdir ~/immich​​​​​​​cd ~/immich

    Download the official configuration file:

    wget https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml

    Then start the containers:

    docker compose up -d

    After the services start, open a browser and go to:

    http://localhost:2283

    Create your first account and you can begin uploading photos right away. After installing the Immich mobile app on your phone, you can connect it to your server and enable automatic photo backups. To access your photo library from other devices on the same network, again replace `localhost` with your server’s IP address, for example:

    http://192.168.1.42:2283

    Your first self-hosted project is often the hardest

    Getting started with self-hosting can feel intimidating at first, but the barrier to entry is much lower than many people expect. Projects like Navidrome, FreshRSS, and Immich show how quickly a spare computer can turn into something genuinely useful. Instead of relying entirely on cloud services, you begin building your own little ecosystem of tools running on hardware you control. And once you see the first one working, it becomes very hard not to start wondering what else that machine could run next.

    Self hosted Nextcloud server on Linux Mint


    I replaced Google Drive with a self‑hosted cloud and the freedom is worth it

    A self-hosted cloud is very liberating and surprisingly not as hard to set up.

    Advertisement
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    The Tech Guy
    • Website

    Related Posts

    I almost quit Succession after Episode 3 — finishing was one of my best TV decisions

    March 19, 2026

    Google introduces a new way for users to sideload Android apps that still protects against scams

    March 19, 2026

    The best sci-fi series on Netflix isn’t a Netflix original

    March 19, 2026

    This Linux feature is why I’m not scared of updates anymore (and Windows should copy it)

    March 18, 2026

    Microsoft 365 network connectivity test tool fails

    March 18, 2026

    Tri-fold phones are already dead — and Samsung just confirmed it

    March 18, 2026
    Leave A Reply Cancel Reply

    Advertisement
    Top Posts

    The iPad Air brand makes no sense – it needs a rethink

    October 12, 202516 Views

    ChatGPT Group Chats are here … but not for everyone (yet)

    November 14, 20258 Views

    Facebook updates its algorithm to give users more control over which videos they see

    October 8, 20258 Views
    Stay In Touch
    • Facebook
    • YouTube
    • TikTok
    • WhatsApp
    • Twitter
    • Instagram
    Advertisement
    About Us
    About Us

    SynapseFlow brings you the latest updates in Technology, AI, and Gadgets from innovations and reviews to future trends. Stay smart, stay updated with the tech world every day!

    Our Picks

    Restless Kīlauea Launches Lava and Ash

    March 20, 2026

    Android Canary update brings big changes, but nothing is guaranteed

    March 20, 2026

    3 cool self-hosted projects to spin up this weekend

    March 20, 2026
    categories
    • AI News & Updates
    • Cybersecurity
    • Future Tech
    • Reviews
    • Software & Apps
    • Tech Gadgets
    Facebook X (Twitter) Instagram Pinterest YouTube Dribbble
    • Homepage
    • About Us
    • Contact Us
    • Privacy Policy
    © 2026 SynapseFlow All Rights Reserved.

    Type above and press Enter to search. Press Esc to cancel.

    Ad Blocker Enabled!
    Ad Blocker Enabled!
    Our website is made possible by displaying online advertisements to our visitors. Please support us by disabling your Ad Blocker.