0
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?

More than 1 year has passed since last update.

Dockerでnginx環境を構築

Posted at
  • ゴール
    Windowsのdocker環境に基本コマンドを実行できるnginx環境を構築

  • Dockerの導入
    WindowsでDocker

  • nginxのイメージを検索

docker search nginx

結果
image.png

  • nginxのイメージを取得
docker pull nginx
  • 取得したイメージの確認
docker images
  • 取得したイメージからnginxコンテナの起動
docker run -dp 80:80 nginx 

localhost:80にアクセスすると下記ページが表示される
image.png

  • 起動したコンテナへログイン
docker exec -it nginx /bin/bash

参考:docker exec
このままだと、様々なコマンドが使用できないのでインストール

  • パッケージ情報取得
apt update
  • Vimインストール
apt install vim
  • 監視コマンドインストール(ps,top,kill等)
apt install procps
  • ネットワーク制御系コマンドインストール(netstat,arp等)
apt install net-tools

nginxのインストールディレクトリは下記

ls /etc/nginx

confファイルは下記

ls /etc/nginx/conf/nginx.conf
ls /etc/nginx/conf/conf.d/default.conf

アクセスした際に表示されるページ

ls /usr/share/nginx/html/index.html
0
0
0

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
0
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?