Replies: 1 comment
-
Added 2025-02-25Debian Cloud Networking |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Select xterm.js under the Console pull down for copy/paste functions
Get SSH Going
Resize the Bootdisk (/dev/sda)
Hardware > Hard Disk (scsi0) > Disk Action > Resize

Expand VM Disk using parted (/dev/sda1)
parted /dev/sda
resizepart 1
Fix/Ignore? Fix
Partition number? 1
Yes/No? Yes
End? [2146MB]? -0
(parted) quit
(reboot if not going further)
Add Guest Agent
Change Hostname (replace "docker-vm" with whatever you want)
hostnamectl set-hostname docker-vm sed -i '2i127.0.1.1 docker-vm' /etc/hosts reboot
Install Docker
sh <(curl -sSL https://get.docker.com)
Install Docker Compose
Add Dockge
mkdir -p /opt/{dockge,stacks} curl -sSL https://raw.githubusercontent.com/louislam/dockge/master/compose.yaml --output /opt/dockge/compose.yaml cd /opt/dockge docker compose up -d
Dockge GUI, https:// IP:5001
Add Portainer
Portainer GUI, https:// IP:9443
Migrated from: tteck/Proxmox#1988
Added 2025-02-25 - Debian Cloud Networking
set a static ip by editing /etc/netplan/90-default.yaml from:
To:
Beta Was this translation helpful? Give feedback.
All reactions