Skip to content

Instantly share code, notes, and snippets.

@erikyuzwa
Last active April 28, 2024 16:25
Show Gist options
  • Star 44 You must be signed in to star a gist
  • Fork 20 You must be signed in to fork a gist
  • Save erikyuzwa/7411752ddcb95b09434aa88f38d91630 to your computer and use it in GitHub Desktop.
Save erikyuzwa/7411752ddcb95b09434aa88f38d91630 to your computer and use it in GitHub Desktop.
Wordpress 6.2.2 Docker Compose for Local Development
# create a local .env file with the following 4 properties:
#
# MYSQL_DATABASE=<something>
# MYSQL_USER=<something>
# MYSQL_PASSWORD=<something>
# MYSQL_ROOT_PASSWORD=<something>
#
# Note: I have had a LOT of issues working with anything newer then Docker Desktop v4.26.1
# If you're on something newer, then double check against this release.
#
# I also have a video going through this here: https://www.youtube.com/watch?v=gEceSAJI_3s
version: "3.8"
services:
database:
# We use a mariadb image which supports both amd64 & arm64 architecture
image: mariadb:10.6.4-focal
restart: unless-stopped
ports:
- 3306:3306
env_file: .env
environment:
MYSQL_ROOT_PASSWORD: '${MYSQL_ROOT_PASSWORD}'
MYSQL_DATABASE: '${MYSQL_DATABASE}'
MYSQL_USER: '${MYSQL_USER}'
MYSQL_PASSWORD: '${MYSQL_PASSWORD}'
volumes:
- db-data:/var/lib/mysql
networks:
- wordpress-network
deploy:
resources:
limits:
memory: 2048m
phpmyadmin:
depends_on:
- database
image: phpmyadmin/phpmyadmin
restart: unless-stopped
ports:
- 8081:80
env_file: .env
environment:
PMA_HOST: database
MYSQL_ROOT_PASSWORD: '${MYSQL_ROOT_PASSWORD}'
networks:
- wordpress-network
wordpress:
depends_on:
- database
image: wordpress:6.2.2-apache
restart: unless-stopped
ports:
- 8080:80
env_file: .env
environment:
WORDPRESS_DB_HOST: database:3306 # use the same name as database service
WORDPRESS_DB_NAME: '${MYSQL_DATABASE}'
WORDPRESS_DB_USER: '${MYSQL_USER}'
WORDPRESS_DB_PASSWORD: '${MYSQL_PASSWORD}'
volumes:
- ./wp-content:/var/www/html/wp-content
networks:
- wordpress-network
volumes:
db-data:
networks:
wordpress-network:
driver: bridge
@kcpal
Copy link

kcpal commented Sep 11, 2023

Thank You very much for this file. It works perfectly!

@xyncblock
Copy link

Thank you Wazoo!

@MiltonMG
Copy link

MiltonMG commented Nov 6, 2023

Thank you so much!!!

@mrjimhubbard
Copy link

How would we add something here to also add SSL to the image? And I feel stupid for even asking, but how does WordPress run if the only folder in the image is wp-content?

@erikyuzwa
Copy link
Author

How would we add something here to also add SSL to the image?

Hmm maybe an easier route would be to add an nginx image, and enable SSL via that route

And I feel stupid for even asking, but how does WordPress run if the only folder in the image is wp-content?

Please don't feel stupid. Not a dumb question at all. I like to think of Docker images as NES cartridges. You plug the ones into your compose file that you want to make use of. When you pull down each "cartridge", it sets up it's own file structure within Docker which it self-serves (in the case of WordPress) via a built-in support for the Apache web server. Hope that helps!

@stakhursky
Copy link

Thank you for sharing!

@jhernandez18p
Copy link

Thanks so much. It was just what I was looking for. Just starting with docker.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment