Files
piratepoet/tests_env/docker/docker-compose.override.macos-sample.yml
Jan Lysý 22584747a0 Move tests docker configuration
Because we want to unify tests environment in the premium plugin. This step should allow us to reuse it easier.
[PREMIUM-230]
2024-08-01 11:48:13 +03:00

33 lines
656 B
YAML

version: '3.8'
services:
# for M1 Macs
mysql:
image: mariadb:10.5.8
# for M1 Macs
chrome:
image: seleniarm/standalone-chromium:4.0.0-20211213
codeception_acceptance:
volumes:
- nfs-mailpoet:/project
- nfs-mailpoet:/wp-core/wp-content/plugins/mailpoet
codeception_integration:
volumes:
- nfs-mailpoet:/project
- nfs-mailpoet:/wp-core/wp-content/plugins/mailpoet
wordpress:
volumes:
- nfs-mailpoet:/var/www/html/wp-content/plugins/mailpoet
volumes:
nfs-mailpoet:
driver: local
driver_opts:
type: nfs
o: addr=host.docker.internal,nolock
device: ':${PWD}/../..'