Ubiquiti UniFi

Devices Cloud Gateways & Mobile Routers Dream Router UMR Industrial Switches Flex Mini Switch Lite 8 PoE Access Points 2x U6+ Other 2x PoE Injector 30W G5 Turret Ultra Setup The Dream Router is the main Router running everything concerning the Network as well as Protect. The UMR industrial is at a remote garage with the G5 Turret Ultra camera for surveilance. The video footage is being sent via the Site-2-Site VPN to the Dream Router. ...

February 6, 2025 · Niklas Amundsson

Synology DS223

Parts Synology DS223 2x Seagate IronWolf HDD 4TB Setup I use the NAS as a File and Image storage solution as well as a backup location for my Proxmox Server. Raid 1 with the two 4TB HDDs Hyperbackup to Backblaze for off-site backup

January 30, 2025 · Niklas Amundsson

it-tools

it-tools is a bundle of browser-based development utilities that run entirely offline. It includes tools for base64 encoding/decoding, JSON formatting, hashing, regex testing and more. Designed for developers, it eliminates the need to visit multiple online sites for simple tasks. All tools are available in a single clean interface and organized for quick access. It’s a handy all-in-one Swiss Army knife for tech professionals and hobbyists. Setup docker-compose.yaml version: '3.9' networks: docker_net: external: true services: it-tools: image: ghcr.io/corentinth/it-tools:latest container_name: it-tools restart: unless-stopped ports: - 8081:80 networks: - docker_net Sources website GitHub

January 29, 2025 · Niklas Amundsson

Stirling PDF

Stirling PDF is a powerful PDF processing toolkit that runs entirely in your browser via a self-hosted interface. It lets you merge, split, convert, rotate, compress and annotate PDFs. The application requires no external dependencies or internet access, making it suitable for sensitive documents. It supports drag-and-drop and batch processing for efficiency. Stirling PDF is great for anyone needing robust document tools without relying on third-party services. Setup docker-compose.yaml version: '3.3' networks: docker_net: external: true volumes: trainingData: extraConfigs: customFiles: # logs: services: stirling-pdf: image: frooodle/s-pdf:latest container_name: stirling-pdf restart: unless-stopped ports: - 8088:8080 volumes: - trainingData:/usr/share/tessdata # Required for extra OCR languages - extraConfigs:/configs - customFiles:/customFiles/ # - logs:/logs/ environment: - DOCKER_ENABLE_SECURITY=false - INSTALL_BOOK_AND_ADVANCED_HTML_OPS=false - LANGS=en_US networks: - docker_net Sources website GitHub

January 29, 2025 · Niklas Amundsson

Wallos

Wallos is a self-hosted application for managing and tracking subscriptions. It helps users monitor recurring payments, renewal dates and associated costs in a centralized dashboard. With calendar integration, you can visualize upcoming billing cycles and receive reminders. The app supports multiple currencies and customizable categories for better budgeting insights. It’s ideal for keeping control over digital service subscriptions and avoiding unexpected charges. Setup docker-compose.yaml version: '3.3' networks: docker_net: external: true volumes: db: logos: services: wallos: image: bellamy/wallos:latest container_name: wallos restart: unless-stopped ports: - 8282:80 environment: TZ: 'Europe/Vienna' volumes: - db:/var/www/html/db - logos:/var/www/html/images/uploads/logos networks: - docker_net Sources website GitHub

January 29, 2025 · Niklas Amundsson

Crafty Controller

Crafty Controller is a game server management panel, primarily used for managing Minecraft servers. It provides tools for starting/stopping servers, viewing real-time logs and scheduling backups. Users can manage mods, plugins and server configurations from a sleek web UI. It supports multiple instances and user access control for team-based server hosting. Ideal for gamers or communities wanting centralized game server administration. Setup docker-compose.yaml version: '3' networks: docker_net: external: true volumes: backups: logs: servers: config: import: services: crafty: container_name: crafty image: registry.gitlab.com/crafty-controller/crafty-4:latest restart: unless-stopped environment: - TZ=Europe/Vienna networks: - docker_net ports: - "8443:8443" # HTTPS - "19132:19132/udp" # BEDROCK - "25500-25600:25500-25600" # MC SERV PORT RANGE volumes: - backups:/crafty/backups - logs:/crafty/logs - servers:/crafty/servers - config:/crafty/app/config - import:/crafty/import Sources website GitLab

January 17, 2025 · Niklas Amundsson

2024 Best NEW Anime

Solo Leveling Solo Leveling bursts onto the scene as a visually stunning and action-packed adaptation of the hit manhwa, following the rise of an underdog hunter to unrivaled power. A must-watch for fans of epic battles and gripping character growth. Delicious in Dungeon Delicious in Dungeon is a unique blend of fantasy adventure and culinary charm, following a group of adventurers who turn dungeon creatures into gourmet meals. With its quirky humor and heartfelt moments, it’s a fresh take on the fantasy genre that’s as delightful as it is imaginative. ...

December 23, 2024 · Niklas Amundsson

Linkwarden

Linkwarden is a self-hosted tool for saving and archiving web pages with full content snapshots. It ensures that saved pages remain accessible even if the original source goes offline. You can tag, search and categorize links for easy retrieval. Great for researchers, writers, or digital hoarders, it acts as a private Wayback Machine. It also supports browser extensions for one-click saving. Setup docker-compose.yaml version: "3.5" networks: docker_net: external: true volumes: pgdata: data: services: postgres: image: postgres:16-alpine container_name: linkwarden_db restart: unless-stopped environment: - POSTGRES_PASSWORD=$POSTGRES_PASSWORD volumes: - pgdata:/var/lib/postgresql/data networks: - docker_net linkwarden: image: ghcr.io/linkwarden/linkwarden:latest container_name: linkwarden restart: unless-stopped environment: - DATABASE_URL=postgresql://postgres:$POSTGRES_PASSWORD@postgres:5432/postgres - NEXTAUTH_SECRET=$NEXTAUTH_SECRET - DISABLE_NEW_SSO_USERS=true - NEXT_PUBLIC_DISABLE_REGISTRATION=true - NEXT_PUBLIC_CREDENTIALS_ENABLED=true - NEXTAUTH_URL=$NEXTAUTH_URL - NEXTAUTH_URL_INTERNAL=$NEXTAUTH_URL_INTERNAL ports: - 3100:3000 volumes: - data:/data/data networks: - docker_net depends_on: - postgres Sources website GitHub

October 9, 2024 · Niklas Amundsson

Baserow

Baserow is a no-code database platform that transforms your data into customizable tables and interfaces. It’s an open-source alternative to Airtable, offering collaborative editing, views and plugins. Users can build apps, manage projects, or track inventories without writing SQL. It integrates with various tools and supports REST APIs for automation. Perfect for teams needing a flexible data platform with visual controls. Setup docker-compose.yaml version: '3.4' networks: docker_net: external: true volumes: data: services: baserow: container_name: baserow image: baserow/baserow:latest restart: unless-stopped environment: - BASEROW_PUBLIC_URL=$BASEROW_PUBLIC_URL ports: - 3010:80 - 3020:443 volumes: - data:/baserow/data networks: - docker_net Sources website GitLab

October 7, 2024 · Niklas Amundsson

Docker

Install docker on Proxmox LXC apt-get update apt-get install ca-certificates curl install -m 0755 -d /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc chmod a+r /etc/apt/keyrings/docker.asc echo \ "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \ $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \ tee /etc/apt/sources.list.d/docker.list > /dev/null apt-get update shut down lxc and append this to nano /etc/pve/lxc/<cid>.conf in proxmox lxc.apparmor.profile: unconfined lxc.cgroup.devices.allow: a lxc.cap.drop: install docker apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin docker hello world sudo docker run hello-world Sources website

October 7, 2024 · Niklas Amundsson