0
2

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.

爆速でWordpressのDocker環境を作成する

Last updated at Posted at 2021-04-23

最近、wordpressの構築が増えてきたので覚書目的でWordpressのDocker環境用テンプレートを作成しました。
インフラに興味がなく、とりあえず爆速で動く環境が欲しい人用なので、設定方法など興味があれば他の記事を参考にしてください。

よかったら使ってみてください。

環境

  • Wordpress(最新安定版)
  • MySQL
  • MailHog(テストメール用)

使い方

「Use this template」もしくはリポジトリをcloneして、docker環境を立ち上げるだけです。

git clone git@github.com:ateliee/wordpress-docker.git
cd wordpress-docker
make up

Wordpressのバージョンを変更したい場合は、infra/docker/wordpress/Dockerfileの下記を変更してください。

FROM wordpress:latest

バージョンは下記より確認できます。

DB設定などを変えたい場合は .env を書き換えてみてください

cp .env.example .env

おまけ

メールの送信はMailHogを利用しているので

送信確認はhttp://localhost:8025/ にアクセスし確認することができます。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?