-->

솔직히 도커는 고래이미지가 더 귀엽지 않나...쩝

[Docker] sudo 권한 없이 Docker 실행

 

저번에 docker 설치에 이어서 sudo 권한이 없는 상태에서 docker 명령어를 실행하는 것을 알아보자.

기본적으로 cloud 환경이라면 root계정으로 사용하진 않기 때문에 sudo 권한이 없을 것이다.

 

#도커 버전확인
[minggu92@cloud ~]$ docker -v
Docker version 1.13.1, build 7d71120/1.13.1

 

#도커 테스트
[minggu92@cloud ~]$ docker run hello-world
/usr/bin/docker-current: Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post http://%2Fvar%2Frun%2Fdocker.sock/v1.26/containers/create: dial unix /var/run/docker.sock: connect: permission denied.

보시다시피 sudo 명령어를 앞에 선언해야 docker 테스트가 정상적으로 이루어짐을 알 수 있다.

매번 sudo를 하는 것이 번거로우니 docker 그룹을 만들어 유저를 추가하도록 하자.

 

#도커 그룹 생성
[minggu92@cloud ~]$ sudo groupadd docker

#도커 그룹에 유저 추가
[minggu92@cloud ~]$ sudo usermod -aG docker minggu92

#도커 재시작
[minggu92@cloud ~]$ sudo systemctl restart docker

#현재 사용자 재로그인
[minggu92@cloud ~]$ sudo su -
[root@cloud ~]# su - minggu92

#테스트
[minggu92@cloud ~]$ 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/

 

+ Recent posts