sh install-docker.sh- log out
- log back in
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 | |
| # Creates a Ubuntu Cloud-Init Ready VM Template in Proxmox | |
| # | |
| # Update the image name and URL for Ubuntu 22.04 LTS | |
| export IMAGENAME="jammy-server-cloudimg-amd64.img" | |
| export IMAGEURL="https://cloud-images.ubuntu.com/jammy/current/" | |
| export STORAGE="local-zfs-cache" | |
| export VMNAME="ubuntu-2204-cloudinit-template" | |
| export VMID=902204 |
- Using a ready-to-use Ubuntu image
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/sh | |
| ### | |
| # Based on | |
| # https://github.com/RMerl/asuswrt-merlin/wiki/Custom-DDNS#google-domains | |
| # https://github.com/RMerl/asuswrt-merlin/wiki/Custom-DDNS#bind9-ddns-using-nsupdate | |
| # | |
| # Forked from | |
| # https://gist.github.com/atais/9ea6595072096ab8077f619bd3648da8 | |
| ### |