Open WebUI

OpenWebUI is a web-based user interface for interacting with large language models like ChatGPT or LLaMA, typically running locally or via API. It allows users to chat with AI models using a sleek and user-friendly design. The interface supports theming, user sessions, and configuration of various AI backends. It is often used as a privacy-conscious alternative to cloud-hosted AI tools. Perfect for self-hosters who want more control over their AI chat experience. ...

March 17, 2025 · Niklas Amundsson

Hades

My first roguelike - and what an introduction. Hades absolutely slaps. Gorgeous visuals, top-tier dialogue and gameplay that feels smooth and rewarding right out the gate. Every run pulls you back in with that “just one more try” magic. If you’re even mildly curious, do yourself a favor and give this gem a go. 10/10 - Zagreus made me a believer. Title: Hades Developer: Supergiant Games Release date: September 17, 2020 Play on Steam Tags: Roguelike Roguelite Action Hack and Slash Indie RPG Singleplayer

March 17, 2025 · Niklas Amundsson

Hogwarts Legacy

A must-play for any Potterhead, with a few caveats. Hogwarts Legacy nails the fantasy of living in the Wizarding World. The open world is massive, packed with things to explore, spells to sling and secrets to uncover - all wrapped in some seriously gorgeous visuals. That said, don’t expect a perfect 1:1 with the books or movies. The story takes place in a different era and some lore details might feel a bit off to die-hard fans. But if you’re here for the vibe, the magic and the castle itself? You’ll be right at home. ...

March 17, 2025 · Niklas Amundsson

Counter-Strike 2

You’ll have fun, you’ll rage and you’ll definitely question your life choices - but honestly, it’s one of the best FPS experiences out there. Most of my hours are in CS:GO, but the core chaos, clutch moments and saltiness carry over to CS2 just fine. Toxic? Sometimes. Addictive? Always. Regret? Only when I whiff an AWP shot. Title: Counter-Strike 2 Developer: Valve Release date: September 27, 2023 Play on Steam Tags: Action Shooter Multiplayer FPS

March 16, 2025 · Niklas Amundsson

Helltaker

Short, sweet, and full of demons. Helltaker is a bite-sized puzzle game with just the right amount of brain-teasing challenge and charm. The premise? Descend into hell to build your very own demon girl harem. The puzzles are clever, the dialogue is witty and the characters somehow steal your heart and your soul. It’s stylish, funny and doesn’t overstay its welcome. Also, it’s free - so there’s really no excuse not to take the plunge. ...

March 16, 2025 · Niklas Amundsson

Calibre Web

Calibre Web provides a modern web interface for browsing and managing eBook collections stored in a Calibre database. It allows users to read books online, download them and manage metadata like author, genre, and series. The system includes support for user accounts, making it great for families or small groups. With OPDS support, you can access your library from eReaders or mobile apps. It’s ideal for building a private digital library server. ...

March 15, 2025 · Niklas Amundsson

Strapi

Strapi is an open-source headless CMS that lets you create, manage and expose content via a customizable API. Built on Node.js, it supports REST and GraphQL out of the box. It features a visual content modeling interface, flexible roles and permissions, and a plugin system for extended functionality. Strapi is especially popular for JAMstack and decoupled web apps. It enables developers to build powerful backends quickly without reinventing the wheel. ...

March 14, 2025 · Niklas Amundsson

Docmost

Docmost is a self-hosted document management system for storing, organizing and collaborating on files. It provides structured access to folders, user permissions and version control. Designed with team collaboration in mind, it offers tagging, search functionality and document previews. It’s useful for small organizations or individuals needing a lightweight DMS alternative. With a clean UI, it simplifies digital file management without relying on third-party cloud storage. Setup docker-compose.yaml version: "3" networks: docker_net: external: true volumes: docmost: db_data: redis_data: services: docmost: image: docmost/docmost:latest container_name: docmost restart: unless-stopped depends_on: - db - redis environment: APP_URL: $APP_URL APP_SECRET: $APP_SECRET DATABASE_URL: postgresql://docmost:$DB_PASSWORD@db:5432/docmost?schema=public REDIS_URL: "redis://redis:6379" ports: - 3005:3000 volumes: - docmost:/app/data/storage networks: - docker_net db: image: postgres:16-alpine container_name: db restart: unless-stopped environment: POSTGRES_DB: docmost POSTGRES_USER: docmost POSTGRES_PASSWORD: $DB_PASSWORD volumes: - db_data:/var/lib/postgresql/data networks: - docker_net redis: image: redis:7.2-alpine container_name: redis restart: unless-stopped volumes: - redis_data:/data networks: - docker_net Sources website GitHub

March 14, 2025 · Niklas Amundsson

Dockge

Dockge is a user-friendly graphical interface for managing Docker Compose projects. It enables users to view, edit and control their container stacks without needing the command line. Each project is displayed in a dashboard where you can monitor logs, restart containers and check health status. It supports multiple projects and configurations, making it great for complex environments. Ideal for users who prefer visual interaction over CLI-based Docker management. Setup docker-compose.yaml version: "3.8" volumes: data: stacks: services: dockge: image: louislam/dockge container_name: dockge restart: unless-stopped ports: - 5001:5001 volumes: - /var/run/docker.sock:/var/run/docker.sock - data:/app/data - stacks:/opt/stacks environment: - DOCKGE_STACKS_DIR=/opt/stacks Sources website GitHub

March 9, 2025 · Niklas Amundsson

Linkding

Linkding is a minimalist self-hosted bookmark manager designed for quick link saving and tagging. It features full-text search, tagging and a browser extension for easy use. You can organize bookmarks into folders or tags and search through them efficiently. It’s optimized for speed and simplicity, making it suitable for personal use or small teams. Setup docker-compose.yaml version: "3.1" networks: docker_net: external: true volumes: linkding-data: services: linkding: container_name: linkding restart: unless-stopped image: sissbruecker/linkding:latest ports: - 9090:9090 volumes: - linkding-data:/etc/linkding/data environment: - LD_CONTAINER_NAME=linkding - LD_HOST_PORT=9090 - LD_HOST_DATA_DIR=./data - LD_SUPERUSER_NAME=$SUPERUSER - LD_SUPERUSER_PASSWORD=$SUPERUSER_PASSWORD - LD_DISABLE_BACKGROUND_TASKS=True - LD_DISABLE_URL_VALIDATION=False - LD_ENABLE_AUTH_PROXY=False networks: - docker_net Sources website GitHub

February 10, 2025 · Niklas Amundsson