Project

General

Profile

Actions

Task #88

open

Milestone #87: Install VM for Linux+Swarm

install VM

Task #88: install VM

Added by Daniele Cruciani 13 days ago. Updated 13 days ago.

Status:
confirmed
Priority:
normal
Start date:
Due date:
03/10/2026 (9 days late)
% Done:

80%

Estimated time:
Sprint:

Description

TODOs

  • download cowd2 trixie : use lxc
  • install vm on proxmox
  • install docker swarm

LXC

pve->Local->Templates -> Search debian trixie

Updated by Daniele Cruciani 13 days ago Actions #1

  • Description updated (diff)
  • Status changed from new to confirmed

Updated by Daniele Cruciani 13 days ago Actions #2

  • Description updated (diff)

Updated by Daniele Cruciani 13 days ago ยท Edited Actions #3

1. Update package lists

sudo apt update

2. Install base tools

sudo apt install -y sudo curl wget gnupg lsb-release apt-transport-https software-properties-common

3. Install Docker (official repository)

curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg

echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
| sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

sudo apt update
sudo apt install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin

4. Add your user to docker group

sudo usermod -aG docker $USER

5. Initialize single-node Swarm

sudo docker swarm init

6. Optional: install lightweight desktop environment for X2Go

sudo apt install -y xfce4 xfce4-goodies lightdm

7. Install X2Go server

sudo apt install -y x2goserver x2goserver-xsession

8. Optional: install common tools for backend testing

sudo apt install -y git htop tmux vim curl jq

9. Enable and start Docker service

sudo systemctl enable docker
sudo systemctl start docker

Updated by Daniele Cruciani 13 days ago Actions #4

  • % Done changed from 0 to 80

installed software

Actions

Also available in: PDF Atom