티스토리 뷰

Docker

Docker를 이용해 Ubuntu 실행하기

glshlee 2019. 5. 12. 02:57
반응형

ubuntu를 사용하기 위해 docker image를 받는다.

latest 버전을 그냥 받기 위해 아래 명령을 입력해보자.

$ docker pull ubuntu
Using default tag: latest
latest: Pulling from library/ubuntu
f476d66f5408: Already exists 
8882c27f669e: Already exists 
d9af21273955: Already exists 
f5029279ec12: Already exists 
Digest: sha256:70fc21e832af32eeec9b0161a805c08f6dddf64d341748379de9a527c01b6ca1
Status: Downloaded newer image for ubuntu:latest

$ docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
rabbitmq            3-management        b3d4f9bdc05b        42 hours ago        228MB
ubuntu              latest              d131e0fa2585        2 weeks ago         102MB

$ docker run --hostname ubuntu --name ubuntu -it ubuntu /bin/bash
root@ubuntu:/# cat /etc/issue
Ubuntu 18.04.2 LTS \n \l

docker run 이후의 명령어는 ubuntu container 안에서 실행되는 명령어이다.

현재  latest 버전은 18.04.2 LTS인것을 알 수 있다.

container를 벗어나기 위해서는 control + p + q를 입력한다.

다시 container에 접근하기 위해서는 다음의 명령을 입력한다.

$ docker attach ubuntu

 

https://hub.docker.com/_/ubuntu

 

ubuntu - Docker Hub

18.04, bionic-20190424, bionic, latest (bionic/Dockerfile) 18.10, cosmic-20190418, cosmic (cosmic/Dockerfile) 19.04, disco-20190423, disco, rolling (disco/Dockerfile) 14.04, trusty-20190425, trusty (trusty/Dockerfile) 16.04, xenial-20190425, xenial (xenial

hub.docker.com

 

이제 ubuntu에 python을 설치해보자.

다음의 명령을 순서대로 입력하고 Enter와 Y를 적절히 입력하여 설를 완료한다.

$ apt-get update
$ apt-get install software-properties-common
$ add-apt-repository ppa:deadsnakes/ppa
$ apt-get install python3.7
$ python3.7 --version
Python 3.7.3
반응형
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
글 보관함