Skip to content

Instantly share code, notes, and snippets.

@ScottLeWarne
ScottLeWarne / create-docker-lxc.sh
Created November 1, 2025 23:16
Proxmox Docker LXC Creation Script
#!/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"
@ScottLeWarne
ScottLeWarne / create-podman-lxc.sh
Last active November 1, 2025 06:58
Proxmox Podman LXC Setup Script (ZFS-compatible, auto-start, LAN bridge)
#!/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"