Advanced Search
Search Results
221 total results found
pgAdmin (PostgreSQL Web-UI)
docker-compose.yml services: pgadmin: container_name: pgadmin image: dpage/pgadmin4:9.9.0 volumes: - pgadmin:/root/.pgadmin - storage:/var/lib/pgadmin/storage ports: - 5050:80 restart: unless-stopped env...
Gotify
services: gotify: image: gotify/server ports: - 8066:80 environment: GOTIFY_DEFAULTUSER_PASS: 'admin' volumes: - app:/app/data # to run gotify as a dedicated user: # sudo chown -R 1234:1234 ./gotify_data ...
Wireguard GUI via Network-Manager
sudo apt install wireguard git dh-autoreconf libglib2.0-dev intltool build-essential libgtk-3-dev libnma-dev libsecret-1-dev network-manager-dev resolvconf git clone https://github.com/max-moser/network-manager-wireguard cd network-manager-wireguard ...
Atuin (History-Manager)
https://atuin.sh/ https://github.com/atuinsh/atuin curl --proto '=https' --tlsv1.2 -LsSf https://setup.atuin.sh | sh restart cli, dann STRG+R oder 'atuin'
Portainer via OIDC vom IdP
Portainer Zugrif über Authentik:
Desktop Client Linux - Virtual Files support
https://www.reddit.com/r/NextCloud/comments/13rkprn/is_there_any_option_for_virtual_filesystem_on/ https://help.nextcloud.com/t/virtual-files-on-ubuntu-desktop/124668 https://launchpad.net/~nextcloud-devs/+archive/ubuntu/client sudo add-apt-repository...
Gitea
Anleitung https://docs.gitea.com/installation/install-with-docker https://integrations.goauthentik.io/integrations/services/gitea/ https://docs.gitea.com/administration/config-cheat-sheet Runner: https://docs.gitea.com/usage/actions/act-runner#install-...
Rustdesk
Anleitung https://rustdesk.com/docs/en/self-host/rustdesk-server-oss/docker/ https://integrations.goauthentik.io/integrations/services/rustdesk-pro/ Ports öffnen Be sure to open these ports in the firewall: hbbs: 21114 (TCP): used for web console, ...
DDNS-Updater
DynamicDNS DDNS Updater Strato https://github.com/qdm12/ddns-updater https://hub.docker.com/r/qmcgaw/ddns-updater/tags version: "3.7" services: ddns-updater: image: qmcgaw/ddns-updater:v2.9 container_name: ddns-updater network_mode: br...
NvChad Installation
https://nvchad.com/docs/quickstart/install # essentials für zb C-Compiler apt install build-essential # Nerdfont installieren wget -P ~/.local/share/fonts https://github.com/ryanoasis/nerd-fonts/releases/download/v3.0.2/JetBrainsMono.zip \ && cd ~/...
nvim cheatsheet
https://www.reddit.com/r/vim/comments/18b1nqj/neovim_cheat_sheet/
Trilium Notes
# Running `docker-compose up` will create/use the "trilium-data" directory in the user home # Run `TRILIUM_DATA_DIR=/path/of/your/choice docker-compose up` to set a different directory # To run in the background, use `docker-compose up -d` services: ...
WinRM installation
notizen wlan/ethernet auf privat statt öffentlich stellen ssh auf windows ist scheiße lokalen ADMIN user erstellen windows client: 35 winrm quickconfig 36 winrm quickconfig 37 winrm set winrm/config/service/Auth '@{Basic="true"}' 38 winrm s...
Zeitzone ändern
unter Ubuntu 22.04: timedatectl set-timezone Europe/Berlin timedatectl Obacht! tzselectverändert nur temporär die Timezone, siehe https://www.hostinger.com/tutorials/how-to-change-timezone-in-ubuntu
scp
von lokal zu Remote: scp -r /mnt/d/Entwicklung/Praxis\ L/network_str_53_HH_v8.1.127.unf root@pl-mini-02-fbs.nb.pl:/root/ zwischen zwei Remotes: scp -3 -p -r root@10.1.1.71:/var/lib/docker/volumes/kimai2_mysql-data root@fn-02.MEINEDOMAIN.it:/mnt/fn-volume-02...
CUPS Druckerserver
https://hub.docker.com/r/anujdatar/cups https://github.com/anujdatar/cups-docker services: cups: image: anujdatar/cups:25.10.01 container_name: cups network_mode: host #optional, falls etwas mit discovern der Geraete nicht k...
Lazydocker installieren
https://github.com/jesseduffield/lazydocker#installation Variante 1: Leicht (Offizielles Skript) # Installationsskript mit bash ausführen curl https://raw.githubusercontent.com/jesseduffield/lazydocker/master/scripts/install_update_linux.sh | bash # C...
SSH Keys & SSH-Config
SSH-Keys importieren nano ~/.ssh/id_NAME_rsa nano ~/.ssh/id_NAME_rsa.pub # Berechtigungen chmod 700 ~/.ssh chmod 600 ~/.ssh/id_NAME_rsa chmod 644 ~/.ssh/id_NAME_rsa.pub zum SSH-Agenten hinzufügen: ssh-add ~/.ssh/id_NAME_rsa pub-key in authorized_key...