Menu

메모용 개발 블로그

전체보기 > OS > Windows >

Windows 11 도커 데스크탑 없이 설치

2024-04-24 14:59:58

윈도우에서 도커를 사용하고자 할 때, 도커 데스크탑을 설치하는 방법이 있습니다.

하지만 현재 도커 데스크탑은 어느정도 규모 이상의 기업을 대상으로 사용에 대한 제약이 걸려있습니다.

해당되는 사항은 아니지만 찝찝하거나 GUI를 잘 활용을 안하고 커맨드로 활용한다면 굳이 도커 데스크탑을 설치하지 않고 진행해도 상관 없습니다.

환경

항목
OS Windows 11 Pro
CPU Arch. AMD64
RAM 16GB

설치

WSL 활성화

시작메뉴를 오른쪽 클릭하여 터미널(관리자)를 클릭해 관리자 권한 터미널을 열어서 진행하여야 합니다.

관리자가 아닌 경우 오류가 발생합니다. 반드시 관리자 권한으로 진행해주세요.

wsl --install

위 명령어로 WSL을 설치 합니다.

배포판 설치

wsl -l -o

위 명령어를 작성하여 설치할 수 있는 리눅스 배포판을 조회합니다.

다음은 설치할 수 있는 유효한 배포판 목록입니다.
'wsl.exe --install <Distro>'를 사용하여 설치합니다.

NAME                                   FRIENDLY NAME
Ubuntu                                 Ubuntu
Debian                                 Debian GNU/Linux
kali-linux                             Kali Linux Rolling
Ubuntu-18.04                           Ubuntu 18.04 LTS
Ubuntu-20.04                           Ubuntu 20.04 LTS
Ubuntu-22.04                           Ubuntu 22.04 LTS
OracleLinux_7_9                        Oracle Linux 7.9
OracleLinux_8_7                        Oracle Linux 8.7
OracleLinux_9_1                        Oracle Linux 9.1
openSUSE-Leap-15.5                     openSUSE Leap 15.5
SUSE-Linux-Enterprise-Server-15-SP4    SUSE Linux Enterprise Server 15 SP4
SUSE-Linux-Enterprise-15-SP5           SUSE Linux Enterprise 15 SP5
openSUSE-Tumbleweed                    openSUSE Tumbleweed

조회된 결과에서 원하는 배포판을 선택합니다.

이 글에서는 Ubuntu로 진행합니다.

wsl --install -d Ubuntu

위 명령어로 리눅스 배포판을 설치합니다.

Docker 설치

도커 설치는 일반적인 리눅스에서 설치하는 방식과 같습니다.

여기서는 apt를 통하여 설치하도록 하겠습니다.

공식 페이지의 가이드를 그대로 진행하였습니다.

https://docs.docker.com/engine/install/ubuntu/

wsl

위 명령어로 리눅스를 엽니다.

sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

위 명령어를 입력하여 도커를 설치합니다.

sudo docker run hello-world

정상 설치를 확인하기 위해서 위 명령어로 테스트 컨테이너를 실행합니다.

Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://hub.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/get-started/

위와 같은 메시지가 출력되면 정상 설치가 완료된 것 입니다.