gitextract_1bdlvoha/ ├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── bin/ │ ├── health.sh │ ├── onchange-db.sh │ ├── onchange-memcached.sh │ ├── onchange-nfs.sh │ ├── onchange-wp-config.sh │ ├── prestart.sh │ └── sensor.sh ├── docker-compose.yml ├── etc/ │ └── containerpilot.json ├── local-compose.yml ├── nginx/ │ ├── .dockerignore │ ├── Dockerfile │ └── etc/ │ ├── containerpilot.json │ └── nginx/ │ └── templates/ │ ├── conf.d/ │ │ └── site.conf │ └── nginx.conf ├── setup.sh └── var/ └── www/ └── html/ ├── .htaccess ├── content/ │ ├── mu-plugins/ │ │ ├── index.php │ │ └── register-theme-directory.php │ ├── plugins/ │ │ └── index.php │ ├── themes/ │ │ └── index.php │ └── uploads/ │ └── .empty ├── db-config.php.ctmpl ├── inactive-plugins/ │ └── no-uploads.php ├── index.php ├── memcached-config.php.ctmpl ├── wp-cli.yml └── wp-config.php.ctmpl