Title: Doesn&#8217;t work with simple Docker Compose example
Last modified: December 12, 2025

---

# Doesn’t work with simple Docker Compose example

 *  Resolved [ianthemerciful](https://wordpress.org/support/users/ianthemerciful/)
 * (@ianthemerciful)
 * [5 months, 2 weeks ago](https://wordpress.org/support/topic/doesnt-work-with-simple-docker-compose-example/)
 * Hey there, I’d really love to get this plugin to work, but I’m not having any
   luck.
 * Here’s a docker-compose.yml file:
 *     ```wp-block-code
       services:  minimal-db:    container_name: minimal-db    image: mysql:9    user: "1000:1000"    volumes:      - /Users/test/minimal-db/data:/var/lib/mysql    restart: always    environment:      MYSQL_ROOT_PASSWORD: 'sekrit'      MYSQL_DATABASE: wordpress      MYSQL_USER: wordpress      MYSQL_PASSWORD: wordpress    security_opt:      - seccomp=unconfined    healthcheck:      test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]      timeout: 5s      retries: 10  minimal-wordpress:    container_name: minimal-wordpress    depends_on:      - minimal-db    ports:      - '8080:80'    image: wordpress:latest    user: "1000:1000"    restart: always    volumes:      - /Users/test/minimal-wordpress:/var/www/html/wp-content    environment:      WORDPRESS_DB_HOST: minimal-db      WORDPRESS_DB_USER: wordpress      WORDPRESS_DB_PASSWORD: wordpress      WORDPRESS_DB_NAME: wordpress
       ```
   
 * If you run `docker-compose up`, MySQL and WordPress will boot up, and you can
   continue the simple installation flow. Then add the Simply Static plugin.
 * Diagnostics will show that the permalink structure is not set. I set it to `/%
   permalink%` (custom), and then reset the diagnostics. All diagnostics are then
   green.
 * After that the, the activity log is just blank. If I click “Generate,” nothing
   happens. If I refresh I can briefly see “Waiting for new export…” appear but 
   then disappear. Refreshing just changes the Pause/Cancel buttons back to “Generate”.
 * There are no HTTP errors in the browser dev tools. There are no errors in the
   Docker Compose log.
 * I’ve tried turning on Debug -> Use server-side cron job and running `curl -si
   http://localhost:8080/wp-cron.php`, but that doesn’t do anything either.
 * I even spent an hour with Cursor trying to inject PHP scripts and call functions
   directly. It tried to debug the queue, and even seemed to get an export working
   with my production site, but only 50/750 of the pages I needed were exported 
   and it couldn’t figure out why.
 * Any ideas?

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [patrickposner](https://wordpress.org/support/users/patrickposner/)
 * (@patrickposner)
 * [5 months, 2 weeks ago](https://wordpress.org/support/topic/doesnt-work-with-simple-docker-compose-example/#post-18753915)
 * Hey [@ianthemerciful](https://wordpress.org/support/users/ianthemerciful/),
 * thanks for reaching out!
 * It looks like we still have some ways to go to get Cursor to pick up our documentation(
   it does work quite well already with ChatGPT, tho!)
 * There is a really quick fix for that described here: [https://docs.simplystatic.com/article/151-working-with-docker-environments](https://docs.simplystatic.com/article/151-working-with-docker-environments)
 *  Thread Starter [ianthemerciful](https://wordpress.org/support/users/ianthemerciful/)
 * (@ianthemerciful)
 * [5 months, 1 week ago](https://wordpress.org/support/topic/doesnt-work-with-simple-docker-compose-example/#post-18758874)
 * Thanks, I appreciate the reply. I had tried all those tricks to no avail and 
   also pointed Cursor at those very docs. I was able to get a wget-based export
   solution working after hours of pain, but I’ll revisit Simply Static again for
   future sites.
    -  This reply was modified 5 months, 1 week ago by [ianthemerciful](https://wordpress.org/support/users/ianthemerciful/).
      Reason: spelling

Viewing 2 replies - 1 through 2 (of 2 total)

You must be [logged in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fdoesnt-work-with-simple-docker-compose-example%2F%3Foutput_format%3Dmd&locale=en_US)
to reply to this topic.

 * ![](https://ps.w.org/simply-static/assets/icon-256x256.png?rev=2443263)
 * [Simply Static - The Static Site Generator](https://wordpress.org/plugins/simply-static/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/simply-static/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/simply-static/)
 * [Active Topics](https://wordpress.org/support/plugin/simply-static/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/simply-static/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/simply-static/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [ianthemerciful](https://wordpress.org/support/users/ianthemerciful/)
 * Last activity: [5 months, 1 week ago](https://wordpress.org/support/topic/doesnt-work-with-simple-docker-compose-example/#post-18758874)
 * Status: resolved