본문 바로가기
Container/Docker

Docker 컨테이너 생성/진입 후 OS 정보 확인.

by ccclog 2023. 11. 20.
반응형

>> cat /etc/*release

-> 기본OS : Ubuntu 23.04

>> docker pull centos

>> docker run --name centos-latest --hostname centos-latest -it -d centos

>> docker exec -it centos-latest /bin/bash

>> cat /etc/*release 

->Docker에서 가져온 Centos image*latest의 버전은 8.4

 

>> exit

>> docker pull centos:7

>> docker run --name centos-latest --hostname centos-latest -it -d centos

>> docker exec -it centos-latest /bin/bash

>> cat /etc/*release 

-> docker에서 불러온 이미지 : CentOS:7 버전은 7.9

 

<Docker관련글>

Docker란?
Docker --help
Docker image 업로드 방법.
Docker 기본 커맨드
Docker 컨테이너 생성/진입 후 OS 정보 확인.
Docker 컨테이너에서 Nvidia driver
Docker 컨테이너별로 Nvidia GPU 분할방법 2가지
Docker Container Kernel 문제.
CentOS7.7-Missing a signature key:Docker CE버전설치

반응형

'Container > Docker' 카테고리의 다른 글

CentOS7.7-Missing a signature key:Docker CE버전설치  (0) 2023.11.29
Docker Container Kernel 문제.  (0) 2023.11.28
Docker 기본 커맨드  (1) 2023.11.20
Docker image 업로드 방법.  (0) 2023.11.20
Docker --help  (0) 2023.10.27