Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env bash
# Author: ir31k0
# Version 1.0.0 (10.04.2026)
# Lizenz: MIT
#
# Beschreibung: Dieses Bash-Script überprüft automatisch, ob deine Entwicklungsumgebung für OpenAI
# Codex unter WSL korrekt eingerichtet ist. Es prüft zentrale Komponenten wie Node.js (inkl. Version),
# npm, Codex CLI, nvm sowie wichtige Tools wie ripgrep und git. Zusätzlich werden WSL-Umgebung,
# Projektpfad und Git-Konfiguration validiert.
@ir31k0
ir31k0 / check-container-updates.sh
Created March 31, 2026 12:28
This script checks for updates of the images for current installed Docker containers. Fork of https://gist.github.com/Eliastik/38e391183c137442403e4dc46d63ed26
#!/bin/bash
# Original: https://gist.github.com/Eliastik/38e391183c137442403e4dc46d63ed26
# Author: Eliastik ( eliastiksofts.com/contact )
# Based on version 1.4.6 (22 february 2026) - Eliastik
# Modified by: ir31k0
#
# Description: This script checks for updates of the images for current installed Docker containers.
# This script doesn't need root access as long as you are running the Docker daemon in rootless mode
# or you followed the "Manage Docker as a non-root user" in the Docker documentation: https://docs.docker.com/engine/install/linux-postinstall/