CoreOS Vagrant on Windows.md

Windows에서 Vagrant를 활용하여 CoreOS 설치하기 Running CoreOS on Vagrant OS 환경은 Windows 기반 해당 정보는 아래 URL 정보를 기본으로 작성되었음 https://coreos.com/os/docs/latest/booting-on-vagrant.html Install VirtualBox VirtualBox 사이트를 참조하여 설치 https://www.virtualbox.org/ Install Vagrant vagrantup.com 사이트에서 vagrant 설치 후 Reboot 쉽게 따라하는 vagrnat 설치 가이드 https://www.youtube.com/watch?v=Jkf5g7L9dSE Install Git Git 설치 https://git-scm.com/download/win Git CMD를 사용할 예정 Setup git ssh 환경 변수에 아래 내역 추가 PATH=%PATH%;C:\Program Files\Git\usr\bin Clone Vagrant repo Now that you have Vagrant installed you can bring up a CoreOS instance. The following commands will clone a repository that contains the CoreOS Vagrantfile. This file tells Vagrant where it can find the latest disk image of CoreOS. Vagrant will download the image the first time you attempt to start the VM. git CMD 창을 활용하여 실행 cd d: mkdir vagrant cd vagrant git clone https: //github.com/coreos/coreos-vagrant.git cd ...

Install Docker

Install Docker 다양한 환경에서 Docker를 작성한 정보를 공유해 드립니다. 해당 자료는 Docker 기본 페이지에서 제공한 문서를 기준으로 테스트 한 결과를 작성한 것입니다. 1. CentOS Docker가 지원되는 CentOS Version CentOS 7 (64-bit) CentOS 6.5 (64-bit) or later Docker는 오직 64 bit 아키텍쳐에서 실행이 가능 1.1. Kernel support kernel version 2.6.32-431 이거나 이상인 버전에서 Docker가 실행 됨 1.2. Installing Docker - CentOS-7 Docker는 CentOS-Extra repository에 기본적으로 포함되어 있음 Install $ sudo yum install docker 1.6. Starting the Docker daemon 1.3. FirewallD Overview iptables을 감싸고 있는 firewalld와 충돌할 수 있음 firewalld가 시작되거나 재시작 되는 경우 iptable의 Docker 제약을 정보가 제거되고 Docker의 동작을 막음 systemd 를 사용하는 경우 Docker 실행 전에 firewalld가 시작됨 결론 docker 다음에 firewalld를 시작하거나 재시작 하는 경우 docker daemon을 재시작 해야 함 기본 설치 시에는 docker 재시작 필요 없음 firewalld 재시작 시에만 docker 재시작 필요 1.4. Installing Docker - CentOS-6.5 Over Overview CentOS-6.5 의 경우, Extra Packages for Enterprise Linux (EPEL) repository에 Docker package가 포함되어 있음 EPEL reposit...