Useful Debian 12 VM Commands #836
MickLesk
announced in
Announcements
Replies: 1 comment
-
I think this info should also be displayed in the website, just like the old one. |
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
-
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} wget -q -O /opt/dockge/compose.yaml https://raw.githubusercontent.com/louislam/dockge/master/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
Beta Was this translation helpful? Give feedback.
All reactions