Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- docker
- CentOS
- 방화벽
- Tomcat
- phpmyadmin
- HLS
- SSL
- 인증서
- 도커
- iptables
- Maria
- mount
- db
- ubuntu
- yum
- YouTube
- 8443
- letsencrypt
- centos7
- Cent
- mysql
- vsftpd
- docker-compose
- haproxy
- haproxy.cfg
- firewall
- youtube-dl
- nginx
- https
- MariaDB
Archives
- Today
- Total
개발자의뇌
CentOS 6 에서 docker 설치 본문
CentOS 6 버전에서 도커를 설치하는 방법
# EPEL Repository 설치
rpm -iUvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
# 또는 yum epel update
yum -y install epel-release
# yum 저장소를 업데이트 한다.
yum update -y
# yum 으로 docker 설치하기
yum -y install docker-io
# docker 서비스 실행
service docker start
# 서비스 등록
chkconfig docker on
# 또는 ntsysv 실행하여 등록
ntsysv
# ntsysv 가 설치되어 있지 않으면 설치
yum install -y ntsysv
Comments