Last active
May 22, 2021 07:39
-
-
Save FilipBartos/35c4ebdfb473e38ce8ced473f517bf7b to your computer and use it in GitHub Desktop.
Running Wordpress in Docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.9" | |
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 | |
ports: | |
- "8000:80" | |
restart: always | |
environment: | |
WORDPRESS_DB_HOST: db:3306 | |
WORDPRESS_DB_USER: wordpress | |
WORDPRESS_DB_PASSWORD: wordpress | |
WORDPRESS_DB_NAME: wordpress | |
volumes: | |
- $PWD/html:/var/www/html | |
volumes: | |
db_data: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Prerequisites
home
directory must exist in the root of the projectCommands
$ docker-compose up
- start Wordpress$ docker-compose down
- stop Wordpress (and preserve database data)$ docker-compose down --volumes
- stop Wordpress and remove data including containers and networkEnvironment
By default Wordpress is running at http://localhost:8000