This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| # create-docker-lxc.sh - Core Proxmox Docker LXC creation script | |
| set -e | |
| # --- CONFIG --- | |
| TEMPLATE_STORAGE="local" | |
| LXC_STORAGE="local-zfs" | |
| DEBIAN_TEMPLATE="debian-12.12-1" | |
| DOMAIN_SUFFIX="lewarne.com" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| # ===================================================== | |
| # Proxmox Podman LXC Core Script (Single Image Strategy) | |
| # Author: Scott LeWarne (GPT-5 assistant build) | |
| # ===================================================== | |
| set -euo pipefail | |
| # ---------- CONFIGURATION ---------- | |
| TEMPLATE_FILE="debian-12-standard_12.12-1_amd64.tar.zst" |