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 3 years have passed since last update.

DockerでWordpressを立ち上げ、ローカルのディレクトリでファイルを編集できるようにする

Last updated at Posted at 2021-09-27

概要

Dockerのドキュメントを見るとcomposeを使ったwordpressの立ち上げ方がわかります。
しかし、そのままではwordpressのソースコードを編集したいときにコンテナ内に入らないといけないため編集がしづらいです。
ボリュームをマウントすることで、ローカルのディレクトリでphpやcsvを編集できるようにする方法を紹介します。

やり方

docker-compose.ymlのwordpressのところでvolumes./wp:/var/www/htmlを指定。
これで、ローカルのディレクトリをコンテナにマウントできる。

$ docker-compose up -d
docker-compose.yml
version: '3'

services:
   db:
     image: mysql:5.7
     volumes:
       - db_data:/var/lib/mysql
     restart: always
     environment:
       MYSQL_ROOT_PASSWORD: somewordpress
       MYSQL_DATABASE: wordpress
       MYSQL_USER: wordpress
       MYSQL_PASSWORD: wordpress

   wordpress:
     depends_on:
       - db
     image: wordpress:latest
     volumes:
       - ./wp:/var/www/html
     ports:
       - "8000:80"
     restart: always
     environment:
       WORDPRESS_DB_HOST: db:3306
       WORDPRESS_DB_USER: wordpress
       WORDPRESS_DB_PASSWORD: wordpress
volumes:
    db_data:

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?