Docker : Dockerfile を利用する2019/04/25 |
Dockerfile を利用して Docker イメージを作成し Docker コンテナーを実行します。
Dockerfile には Docker コンテナーの構成内容をまとめて記述するため、構成管理にも役立ちます。 |
|
[1] | 例として、apache2, sshd のインストールと起動を行う Dockerfile を作成します。複数プロセスの起動には Supervisor を利用します。 |
root@dlp:~#
vi Dockerfile # 新規作成 FROM ubuntu MAINTAINER ServerWorld <admin@srv.world> RUN apt-get update RUN apt-get -y install openssh-server apache2 supervisor RUN echo "Hello DockerFile World" > /var/www/html/index.html RUN mkdir /var/run/sshd; chmod 755 /var/run/sshd RUN mkdir /root/.ssh; chown root. /root/.ssh; chmod 700 /root/.ssh RUN ssh-keygen -A ADD supervisord.conf /etc/supervisor/supervisord.conf ADD .ssh/id_rsa.pub /root/.ssh/authorized_keys EXPOSE 22 80 CMD ["/usr/bin/supervisord"] [supervisord] nodaemon=true [program:sshd] command=/usr/sbin/sshd -D autostart=true autorestart=true [program:apache2] command=/usr/sbin/apachectl -D FOREGROUND autostart=true autorestart=true # SSHキー生成 root@dlp:~# ssh-keygen -q -N "" -f /root/.ssh/id_rsa
# イメージのビルド ⇒ docker build -t [イメージ名]:[タグ] . root@dlp:~# docker build -t web_server:latest ./ Sending build context to Docker daemon 22.02kB Step 1/12 : FROM ubuntu ---> 94e814e2efa8 Step 2/12 : MAINTAINER ServerWorld <admin@srv.world> ---> Running in ebfa177f67cf Removing intermediate container ebfa177f67cf ---> 24ed6b8249be Step 3/12 : RUN apt-get update ---> Running in 0a9fb4a2bc6e ..... ..... Successfully built 11c1025998ec Successfully tagged web_server:latestroot@dlp:~# docker images REPOSITORY TAG IMAGE ID CREATED SIZE web_server latest 11c1025998ec About a minute ago 306MB srv.world/ubuntu_apache2 latest c0d10606acde 6 minutes ago 210MB ubuntu latest 94e814e2efa8 6 weeks ago 88.9MB # バックグラウンドでコンテナーを起動 root@dlp:~# docker run -d -p 2022:22 -p 8081:80 web_server 00af9375a7f29938da55556165fac6ea89747ec6c6ce9e50db3f3e74045ea38aroot@dlp:~# docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 00af9375a7f2 web_server "/usr/bin/supervisord" 19 seconds ago Up 18 seconds 0.0.0.0:2022->22/tcp, 0.0.0.0:8081->80/tcp zealous_williamson # アクセス確認 root@dlp:~# curl localhost:8081 Hello DockerFile World root@dlp:~# ssh -p 2022 localhost /bin/hostname
The authenticity of host '[localhost]:2022 ([::1]:2022)' can't be established.
ECDSA key fingerprint is SHA256:7hL139J8xbG3RwgHqYLCw3S+0QzPRSbQzq+r+zO9yag.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '[localhost]:2022' (ECDSA) to the list of known hosts.
00af9375a7f2
|
Docker ファイルでの記述フォーマットは [INSTRUCTION arguments] (指示 引数) の形となっており、INSTRUCTION
には主に下記のような種類があります。なお、INSTRUCTION の必須項目は FROM のみで、その他は任意です。FROM
が指定されていれば Docker ファイルは動作します。
|
Sponsored Link |