Docker라는 놈도 Ubuntu 환경에서 그다지 유연하고 편하게 사용할 수 있는 것은 아닌 것 같다.

 

일단, 32bit 환경은 지원하지 않는다. 64bit 환경에서만 Docker를 사용할 수 있다.

또 하나는 12.04 에서는 Docker를 패키지로 바로 제공해주지 않는다.

 

Docker에서는 나름 편하게 설치할 수 있도록 도움은 주고 있지만, 솔직히 좀 귀찮다.

 

 

 

1. Docker 설치

 

$ sudo apt-get install curl

 

$ curl -sSL https://get.docker.com/ | sh

 

$ docker --version
Docker version 1.8.2, build 0a8c2e3

 

 

2. Docker Group 설정

 

사용자 계정으로 docker를 실행할 수 있는지 다음과 같이 확인해보자.

 

$ docker run hello-world
Post http:///var/run/docker.sock/v1.20/containers/create: dial unix /var/run/docker.sock: permission denied.
* Are you trying to connect to a TLS-enabled daemon without TLS?
* Is your docker daemon up and running?

 

위와 같이 나온다면 권한이 없는 것이다. 다음과 같이 그룹 설정을 하자.

 

$ sudo usermod -aG docker <사용자 계정>

 

 

위와 같이 한 뒤에 다시 재로그인을 해야 한다. (심지어 재부팅이 필요할수도)

 

$ docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world

 

535020c3e8ad: Pull complete
af340544ed62: Pull complete
Digest: sha256:a68868bfe696c00866942e8f5ca39e3e31b79c1e50feaee4ce5e28df2f051d5c
Status: Downloaded newer image for hello-world:latest

 

Hello from Docker.
This message shows that your installation appears to be working correctly.

 

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

 

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

 

Share images, automate workflows, and more with a free Docker Hub account:
 https://hub.docker.com

 

For more examples and ideas, visit:
 https://docs.docker.com/userguide/

 

 

3. Redmine pull

 

$ docker pull sameersbn/postgresql:9.4-4

 

$ docker pull sameersbn/redmine:3.1.1

 

 

 

4. Redmine Run

 

$ docker run --name=postgresql-redmine -d --env='DB_NAME=redmine_production' --env='DB_USER=redmine' --env='DB_PASS=password' --volume=/srv/workspace/redmine/postgresql:/var/lib/postgresql sameersbn/postgresql:9.4-4

 

$ docker run --name=redmine -d --link=postgresql-redmine:postgresql --publish=10083:80 --env='REDMINE_PORT=10083' --volume=/srv/workspace/redmine/redmine:/home/redmine/data sameersbn/redmine:3.1.1

 

 

 

아직은 많은 이해와 활용력이 부족하여 이번 포스팅에서 설명을 달지는 않겠다.

일단 위와 같이 진행을 하면 http://localhost:10083 으로 접속을 하면 Redmine을 만날 수 있다!

 

 

참고 : https://github.com/sameersbn/docker-redmine#installation

 

 

반응형

+ Recent posts