도커 일반 사용자로 도커 관리

1 개요[ | ]

도커 / root 관리자가 아닌 일반 사용자로 도커 관리
Docker / Manage Docker as a non-root user
  • 도커 데몬은 TCP 포트 대신 root 에게 소유된 Unix socket 을 사용하기 때문에 docker run hello-world실행시 항상 sudo 를 함께 해줘야 하는 불편함이 있음

2 예시[ | ]

1. 도커 그룹 생성

john:~$ sudo groupadd docker
[sudo] password for john:

2. 현재 사용자를 도커 그룹에 포함

john:~$ sudo usermod -aG docker $USER
[sudo] password for john:


3. 현재 사용자의 도커 그룹 추가를 반영하기 위해 로그아웃, 로그인 해줌

4. 도커 실행 확인

john:~$ 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/

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}