14 May 2024
docker-compose.yml
-file with something similar to this:
# /wordpress-docker/docker-compose.yml
---
version: '3.3'
services:
db:
container_name: 'local-wordpress-db'
image: 'mysql:5.7'
volumes:
- './data/mysql:/var/lib/mysql'
ports:
- 18766:3306
environment:
MYSQL_ROOT_PASSWORD: somewordpress
MYSQL_DATABASE: wordpress_db
MYSQL_USER: wordpress_user
MYSQL_PASSWORD: wordpress_password
wordpress:
container_name: 'local-wordpress'
depends_on:
- db
image: 'wordpress:latest'
ports:
- '80:80'
environment:
WORDPRESS_DB_HOST: 'db:3306'
WORDPRESS_DB_USER: wordpress_user
WORDPRESS_DB_PASSWORD: wordpress_password
WORDPRESS_DB_NAME: wordpress_db
volumes:
- "./wordpress:/var/www/html"
- "./plugins:/var/www/html/wp-content/plugins"
The docker script installs the latest Wordpress version with all it's dependencies and a MySQL 5.7 database. If you need a specific Wordpress version (e.g. if your client runs an older intallation) simply replace latest with whatever version you need.
docker-compose up
This installs everything, if it isn't already, and starts hosting the Wordpress installation locally.
Laravel notes
Published 2024-05-03
Laravel
Notes
Laravel is by far my favorite PHP framework. Here I share the notes I have gathered while developing a bunch of different websites.
Read the post →How I use Slack as a logging tool
Published 2024-04-26
You can use Slack to send messages to yourself from your websites. Here I explain how I can send Slack messages from my own website.
Read the post →PHP notes
Published 2024-05-03
PHP
Web development
Various tips, tricks and how-to's gathered while writing PHP websites.
Read the post →