Categories: Wordpress

Running WordPress Locally with Docker Compose

If you want to run WordPress locally, skip XAMPP/MAMP and use Docker Compose. Here’s a setup that works for migrations, plugin/theme dev, or testing.

1. Prerequisites

  • Docker and Docker Compose installed (docker compose CLI should work)
  • Project folder (name it whatever you want)

2. The Compose File

Paste this as compose.yml in your project root:

services:
  wordpress:
    image: wordpress:6.5-php8.2-apache
    container_name: wp_site
    ports:
      - "8080:80"
    environment:
      WORDPRESS_DB_HOST: db
      WORDPRESS_DB_NAME: wordpress
      WORDPRESS_DB_USER: wpuser
      WORDPRESS_DB_PASSWORD: wppassword
      WORDPRESS_TABLE_PREFIX: your_table_prefix_
      WP_DEBUG: true
    volumes:
      - ./public_html:/var/www/html
    depends_on:
      - db

  db:
    image: mariadb:10.6
    container_name: wp_db
    restart: always
    environment:
      MYSQL_ROOT_PASSWORD: rootpassword
      MYSQL_DATABASE: wordpress
      MYSQL_USER: wpuser
      MYSQL_PASSWORD: wppassword
    volumes:
      - db_data:/var/lib/mysql

volumes:
  db_data:

Replace yourprefix_ with your table prefix (default is wp_).
Update passwords as needed.

3. Add Your Files

  • New site: download WP core and put it in public_html
  • Existing site: extract your public_html from production here

You can also drop your database export (database.sql) in the root directory for later.

4. Start Containers

docker compose up -d

This will:
– Start WordPress at http://localhost:8080
– Start MariaDB for your WP instance

5. Import Database (if migrating)

Replace database.sql with your file name:

docker exec -i wp_db mysql -u wpuser -pwppassword wordpress < database.sql

6. Table Prefix

If your imported DB tables use a custom prefix (not wp_), set WORDPRESS_TABLE_PREFIX in your compose file (as above).
Otherwise, WordPress will act like it’s a fresh install.

7. URLs and Media

If you migrated from production, update all site URLs:

docker run --rm --network yourproject_default \
  -v "$PWD/public_html:/var/www/html" \
  -w /var/www/html \
  -e WORDPRESS_DB_HOST=db \
  -e WORDPRESS_DB_USER=wpuser \
  -e WORDPRESS_DB_PASSWORD=wppassword \
  -e WORDPRESS_DB_NAME=wordpress \
  -e WORDPRESS_TABLE_PREFIX=yourprefix_ \
  wordpress:cli \
  php -d memory_limit=512M /usr/local/bin/wp search-replace 'https://yourproductiondomain.com' 'http://localhost:8080' --skip-columns=guid

Adjust network name, domain, and prefix as needed. Run the command twice, the first time as shown above and the second time remove the ‘http’ / ‘https’ from the url listed, since both forms exist in WordPress dbs.

Check our Website Repair service and our SEO Audit service

8. Logging In

If your WP admin login doesn’t work after importing, reset the password with:

docker run --rm --network yourproject_default \
  -v "$PWD/public_html:/var/www/html" \
  -w /var/www/html \
  -e WORDPRESS_DB_HOST=db \
  -e WORDPRESS_DB_USER=wpuser \
  -e WORDPRESS_DB_PASSWORD=wppassword \
  -e WORDPRESS_DB_NAME=wordpress \
  -e WORDPRESS_TABLE_PREFIX=yourprefix_ \
  wordpress:cli \
  php -d memory_limit=512M /usr/local/bin/wp user update youradmin --user_pass='yournewpass'

9. Done

Site is up at http://localhost:8080.
Debug as needed using WP_DEBUG or by checking logs.

No magic, no plugins required. If you break it, just blow away containers and volumes and start over.

Kevin Jimoh

Recent Posts

The 5 Best Uses for OpenClaw in Business

AI is everywhere right now  -  but most teams still struggle to turn AI into…

1 day ago

What Is OpenClaw? A Simple Guide to the AI Assistant Platform

If you’ve been hearing about OpenClaw and wondering what it actually does, you’re not alone.…

1 day ago

How to Avoid Losing Business to Your Competitors

In a competitive city like Atlanta, customers compare options before making a decision. They read…

2 weeks ago

Digital Marketing Strategies for SaaS Companies in 2026

Software as a Service companies operate on a subscription model. That changes how marketing should…

2 weeks ago

How Content Marketing Helps SEO

Search engines need helpful information to understand what your site is about. That is where…

3 weeks ago

How Much Does Inbound Marketing Cost in 2026?

The short answer is that inbound marketing costs can vary a lot. The final price…

1 month ago

This website uses cookies.