SelfHosting

SelfHosting 101

You can do SelfHosting with a Raspberry Pi, with and old laptop, in the cloud…

But you can even do it in the very same computer you are reading this.

  1. Get Docker/Podman installed to manage the containerized apps
  2. Get the Docker-Compose ready
  3. Deploy!
Follow these CLI’s to SelfHost with Containers! πŸ‹ πŸš€

If you are using a server, make sure it has SSH and the firewall allowing the connection:

sudo apt update
sudo apt install openssh-server
#systemctl status ssh

sudo ufw allow ssh

#ssh username@<local_minipc_server_ip>

Check running processes with:

#systemctl status
htop

#systemctl list-units --type=service
systemctl list-units --type=service --state=running

And the ports used:

sudo lsof -i -P -n

Follow the steps of this SelfHosting-101 script:

curl -O https://raw.githubusercontent.com/JAlcocerT/Linux/main/Z_Linux_Installations_101/Selfhosting_101.sh

#nano Selfhosting_101.sh #MAKE SURE YOU UNDERSTAND WHAT YOU WILL BE RUNNING
chmod +x Selfhosting_101.sh
sudo ./Selfhosting_101.sh

Remember to go to your Portainer instance and setup the user/pass quickly: localhost:9000

If you forget, you will need to restart Portainer, so that you are able to setu the password:

docker restart portainer
graph LR
    A[Connect via SSH] -- Open f/w if needed --> 
    C(Install Docker/Podman)
    C --> D(Spin your ❀️ Services)
SelfHosting with a Raspberry PiSelfHosting with a Raspberry Pi
Beyond SelfHosting - Linux can onboard you to the IoT and Embedding World. Are you ready?

SelfHosting Cool Stuff

GenAI

To try new Gen AI Projects within Linux, you can setup a Docker Container Python environment with these 3 artifacts:

LLMs

ℹ️
The ML Compilation for LLMs project aims to spread the development and deployment of AI Models.
https://flathub.org/apps/com.cassidyjames.butler #HA visualizer

This repo contains interesting projects (π—Ÿπ—Ÿπ— π˜€, π—Ÿπ—Ÿπ— π—’π—½π˜€, and π˜ƒπ—²π—°π˜π—Όπ—Ώ π——π—•π˜€) to have a look: https://github.com/iusztinpaul/hands-on-llms

Affordable Local Gen AI with iGPU’s

Thanks to to Tech-Practice for inspiration.


FAQ

Where to Learn More about SelfHosting?

Windows inside Docker

Thanks to the Dockur Project and by using the Image

With this Docker-Compose πŸ‘ˆ
version: '3.3'

services:
  windows:
    image: dockurr/windows
    container_name: windows
    devices:
      - /dev/kvm
    cap_add:
      - NET_ADMIN
    ports:
      - "8006:8006" #UI
      - "3389:3389/tcp"
      - "3389:3389/udp"
    stop_grace_period: 2m
    restart: on-failure
    volumes:
      - ./data:/storage
    environment:
      RAM_SIZE: 8GB
      CPU_CORES: 3
      DISK_SIZE: 75GB
      VERSION: "win10"