Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

53 total results found

Projects

Docker

CLI tools

Linux

Linux

Docker

Git

Windows

Clean Code

Collection of prinziples, examples, hints,... for helping to write clean code.

Boot

Linux

add boot entry https://linuxconfig.org/booting-a-ms-windows-os-using-grub Boot to your Linux Open a Terminal window Type: sudo os-prober If the results identify a Windows 10 install, type sudo update-grub which will update the GRUB entries and add it...

Installation

Docker

install current version (ubutnu/debian) curl -sSL https://get.docker.com | sh sudo usermod -aG docker $USER newgrp docker # to add docker in your current shell instance execute docker without sudo sudo groupadd docker if not already exists sudo usermod -aG d...

Docker CLI

Docker

container docker ps shows all running container docker ps -a shows all existing container docker run [OPTIONS] IMAGE[:TAG|@DIGEST] [COMMAND] [ARG...] --name <container-name> gives the created container a custom name --rm removes the container after s...

General

Docker Projects

https://github.com/awesome-selfhosted/awesome-selfhosted portainer docker run -d -p 8000:8000 -p 9443:9443 -p 9000:9000 \ --name portainer \ --restart=always \ -v /var/run/docker.sock:/var/run/docker.sock \ -v ./data/portainer:/data \ portainer/portainer-ce:l...

Proxy

Docker Projects

traefik links youtube tutuorial traefik boilerplate (Lempa) labels for connected containers services: demo labels: - traefik.enable=true - traefik.http.services.demo.loadbalancer.server.port=9000 - traefik.http.routers.demo.service=de...

Development

Docker Projects

Code Server (Vistual Studio Code) https://docs.linuxserver.io/images/docker-code-server docker run -d \ --name=code-server \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Europe/Vienna \ -e PASSWORD=password `#optional` \ -e HASHED_PASSWORD= `#optional` ...

Monitoring

Docker Projects

Uptime Kuma Link: https://github.com/louislam/uptime-kuma does not work on RPi ? How to install: sudo docker run -d --restart=always -p 3021:3001 -v uptime-kuma:/app/data --name uptime-kuma louislam/uptime-kuma or: version: "2" services: uptime-kuma: ...

Collaboration

Docker Projects

Cryptpad Link: https://hub.docker.com/r/promasu/cryptpad Etherpad Links: https://hub.docker.com/r/etherpad/etherpad https://github.com/ether/etherpad-lite/blob/develop/doc/docker.md version: '3' networks: etherpad: services: db: restart: always ...

Files/Storage

Docker Projects

Filebrowser For loading files to the server... (like music, backup files, ...) https://filebrowser.org/installation sudo \ docker run -d \ -v /:/srv \ -p 8012:80 \ --name filebrowser \ filebrowser/filebrowser Default credentials: admin:admin P...

Media

Docker Projects

Ampache - Music streaming Jellyfin https://jellyfin.org/docs/general/installation/container

Network

Docker Projects

wireguard https://jakew.me/2020/10/19/wireguard-docker/ https://hub.docker.com/r/linuxserver/wireguard https://goneuland.de/wireguard-ui-wireguard-webinterface-mittels--compose-und-traefik-installieren/ version: "2.1" services: wireguard: image: lscr.i...