UTMStack
UTMStack copied to clipboard
[FEATURE] Docker package compatible with Ubuntu 24.04
Describe the solution you'd like Fix this issue: https://download.docker.com/linux/ubuntu/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details
Describe alternatives you've considered Install docker compatible with Ubuntu 22.04 and APT:
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg 2)echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
- apt update
- apt upgrade
- delete old configuration of docker in /etc/apt/source.list.d/
- delete old apt key of docker: apt-key del 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88