소프트웨어/Docker

    [Docker] How to use (Command)

    reference : http://bluese05.tistory.com/15 $ docker search ubuntu $ docker pull ubuntu:latest $ docker run -i -t --name ubuntu_ ubuntu /bin/bash $ docker start ubuntu_ $ docker restart ubuntu_ $ docker attach ubuntu_ $ sudo docker commit -a "Foo Bar " -m "add hello.txt" hello-nginx hello:0.2docker commit : 형식마지막에 :는 저장 될 이미지 이름과 태그이다. +) wordpress docker와 같은 경우 bash로 접속하고 싶다면,docker exec -it [co..

    [Docker] Docker compose with wordpress

    (Ubuntu 16.04 64bit) Reference : https://docs.docker.com/compose/git hub : https://github.com/docker/compose/releases 1. DefineDocker compose는 여러개의 container를 실행시키는데 사용하는 것이다. 2. Install Docker Compose(ref : https://docs.docker.com/compose/install/)$ sudo -s$ sudo curl -L https://github.com/docker/compose/releases/download/1.6.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compos..

    [Docker] install, but error!! (include solution)

    (Ubuntu 16.04 64bit) Error message$ docker run hello-world Cannot connect to the Docker daemon. Is the docker daemon running on this host? SolutionLogout and Login or check this web page, https://github.com/docker/kitematic/issues/1010