Last active
January 24, 2022 19:25
-
-
Save ChaseWPDEV/dc003a7d05a6b8c1600cec3c3ea12325 to your computer and use it in GitHub Desktop.
Example Docker Compose File for the ChaseWPDEV / WPTesting-Docks testing system
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
jest: | |
image : wpjesttests | |
volumes: | |
- /var/www/html/cwp/wp-content:/home/node | |
command: bash | |
phpunit: | |
image : wpphptests | |
volumes: | |
- /var/www/html/cwp/wp-content:/root/wp-content | |
command: bash -c "service mariadb start && bash" | |
backstop: | |
image: wpbackstoptests | |
volumes: | |
- /var/www/html/cwp/wp-content/backstop-tests:/src |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment