1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Docker で Apache2 サーバーを立てる

Last updated at Posted at 2021-06-24

こちらと同じことを、Apache2 で行いました。
Docker で Nginx サーバーを立てる

  1. Apache2 のインストールと起動
    docker run --name some-apache2 -d -p 8080:80 httpd
    
  2. イメージの確認
    $ docker images
    REPOSITORY           TAG       IMAGE ID       CREATED        SIZE
    httpd                latest    30287d899656   25 hours ago   138MB
    
  3. Apache2 が動いていることを確認
    $ docker ps -a
    CONTAINER ID   IMAGE                    COMMAND                  CREATED          STATUS                      PORTS                  NAMES
    38c467378cf0   httpd                    "httpd-foreground"       10 minutes ago   Up 10 minutes               0.0.0.0:8080->80/tcp   some-apache2
    
  4. ブラウザーで http://localhost:8080 にアクセス
  5. apache2_aa.png

  6. ssh でログインする
    $ docker exec -it some-apache2 bash
    root@38c467378cf0:/usr/local/apache2#
    
  7. ログイン後 vim をインストールする
    apt update
    apt install vim
    
  8. index.html を編集する
    /usr/local/apache2/htdocs/index.html
    <html><body>
    <h1>It works!</h1>
    <p>Jun/24/2021</p>
    </body></html>
    
  9. ブラウザーでアクセス

    apache2_bb.png

参考

Docker 内のファイルをホストにコピーする方法

docker cp some-apache2:/usr/local/apache2/htdocs/index.html /tmp

ホスト内のファイルを Docker にコピーする方法

docker cp index.html some-apache2:/usr/local/apache2/htdocs

確認したバージョン

$ docker --version
Docker version 28.0.1, build 068a01ea94

ベースになっている OS

# cat /etc/os-release 
PRETTY_NAME="Debian GNU/Linux 12 (bookworm)"
NAME="Debian GNU/Linux"
VERSION_ID="12"
VERSION="12 (bookworm)"
VERSION_CODENAME=bookworm
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?