728x90
sudo apt install -y \
apt-transport-https \
ca-certificates \
curl \
gnupg2 \
software-properties-common
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | sudo apt-key add -
echo "deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") \
$(lsb_release -cs) stable" | \
sudo tee /etc/apt/sources.list.d/docker.list
sudo apt update
sudo apt install -y --no-install-recommends \
docker-ce \
cgroupfs-mount
sudo systemctl enable --now docker
728x90
'코드기록' 카테고리의 다른 글
[시큐어코딩]민감한 정보가 포함 된 오류 메시지 생성 (0) | 2023.11.07 |
---|---|
[시큐어코딩]정수 오버플로 또는 랩 어라운드 (0) | 2023.11.07 |
[햐햐] 이클립스 && 오라클 하다가 그냥 기록 함 (0) | 2023.04.07 |
[JS] SVG 선 끝 둥글게 (0) | 2023.03.20 |
[css] user-select / 더블클릭시 파란색 없애기 (0) | 2023.03.03 |