Skip to content

Instantly share code, notes, and snippets.

@Lovor01
Created September 14, 2023 18:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lovor01/ff2af5567280a45b58de7b193251d127 to your computer and use it in GitHub Desktop.
Save Lovor01/ff2af5567280a45b58de7b193251d127 to your computer and use it in GitHub Desktop.
Create WordPress environment in Docker
services:
db:
# We use a mariadb image which supports both amd64 & arm64 architecture
image: mariadb:latest
# If you really want to use MySQL, uncomment the following line
#image: mysql:8.0.27
command: '--default-authentication-plugin=mysql_native_password'
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
- MYSQL_ROOT_PASSWORD=somewordpress
- MYSQL_DATABASE=wordpress
- MYSQL_USER=wordpress
- MYSQL_PASSWORD=wordpress
expose:
- 3306
- 33060
ports:
- 3306:3306
wordpress:
image: wordpress:latest
volumes:
- wp_data:/var/www/html
ports:
- 80:80
restart: always
environment:
- WORDPRESS_DB_HOST=db
- WORDPRESS_DB_USER=wordpress
- WORDPRESS_DB_PASSWORD=wordpress
- WORDPRESS_DB_NAME=wordpress
volumes:
db_data:
wp_data:
@Lovor01
Copy link
Author

Lovor01 commented Sep 14, 2023

Install everything: docker compose up -d
Connect to database: localhost:3306, user: root pasw: somewordpress

  • do not use this in production; at least change passwords to something secure

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