DOCKER 이미지 제작 공방 * 여러가지의 이미지 제작 방법을 포스팅 합니다. 이미지 제작 후 https://hub.docker.com/ 으로 업로드 방법은 추후에 포스팅 진행합니다. * 참조 : http://wiki.tunelinux.pe.kr/pages/viewpage.action?pageId=2588903 http://khmel.org/?p=891 [ docker 베이스 이미지 제작 - 현재 os 이미지화 ] * 테스트 서버는 docker가 없는 centos6 os 서버 입니다. tar --numeric-owner --exclude=/proc --exclude=/sys --exclude=/boot --exclude=/usr/lib/firmware --exclude=/usr/lib/modules --exclude=/usr/lib/udev -cvf {os}.tar / cat...
IT. POST LIST





DOCKER - Ubuntu-Desktop - NoVncViewer * 해당 작업은 docker가 설치 되어 있는 환경에서 진행하고, docker로 ubuntu desktop 을 올려 웹브라우저로 ubuntu를 접속하는 방법 입니다. * docker 설치 - 링크 *참조 : https://hub.docker.com/r/dorowu/ubuntu-desktop-lxde-vnc/ [ Quick Start ] [root@localhost ]# docker run -d -p 6080:80 --name ubuntu_dt dorowu/ubuntu-desktop-lxde-vnc Unable to find image 'dorowu/ubuntu-desktop-lxde-vnc:latest' locally Trying to pull repository docker.io/dorowu/ubuntu-desktop-lxde-vnc ... latest: Pulling from docker.io/dorowu/ubuntu-desktop-lxde-vnc 5ed55f09d535: Extracting...
DOCKER OS IMAGE 네트워크 안될때 - MTU 설정 * 최초 서버에 docker 설치 및 os image 를 연결 하게 되면 네트워크는 자동으로 잡히게 되는데 가상화 서버나 네트워크 스위치에서 MTU를 낮게 잡거나 높게 잡아 놓게 되면 docker 와 MTU 수치가 다르기 때문에 네트워크가 되지 않습니다. * 해당 서버는 openstack apache webserver 에서 진행 했습니다. [ 문제 발생 ] * eth0 과 docker0 의 mtu가...