Recommended setup to handle Docker login credentials securely on Ubuntu Server.
- 🐧 Ubuntu Server 25.10 or newer
- Docker installed
- Brew installed
Recommended setup to handle Docker login credentials securely on Ubuntu Server.
A utility script for cloning and setting up Git repositories as bare clones with an opinionated worktree-enabled structure.
Git worktrees are becoming the go-to solution for managing repositories with AI-driven development workflows, allowing developers to work on multiple features in parallel while your AI assistant works in separate branches without conflicts.
| #!/usr/bin/env bash | |
| latest="8.0" | |
| versions=("7.0" "7.1" "7.2" "7.4" "$latest") | |
| valid=$(printf "|%s" "${versions[@]}") | |
| switch="$1" | |
| ERROR=$(tput setaf 1) | |
| SUCCESS=$(tput setaf 2) | |
| if [ -z "$switch" ] |