piratepoet/docker-compose.override.macos-sample.yml
Jan Jakes ab27eaee2d Autoformat files with prettier
[MAILPOET-4075]
2022-04-12 15:38:27 +02:00

38 lines
967 B
YAML

version: '3.8'
services:
# for M1 Macs
db:
image: mariadb:10.5.8
wordpress:
volumes:
- nfs-wordpress:/var/www/html
- nfs-mailpoet:/var/www/html/wp-content/plugins/mailpoet
- nfs-mailpoet-premium:/var/www/html/wp-content/plugins/mailpoet-premium
test_wordpress:
volumes:
- nfs-mailpoet:/var/www/html/wp-content/plugins/mailpoet
- nfs-mailpoet-premium:/var/www/html/wp-content/plugins/mailpoet-premium
volumes:
nfs-wordpress:
driver: local
driver_opts:
type: nfs
o: addr=host.docker.internal,nolock
device: ':/System/Volumes/Data${PWD}/wordpress'
nfs-mailpoet:
driver: local
driver_opts:
type: nfs
o: addr=host.docker.internal,nolock
device: ':/System/Volumes/Data${PWD}/mailpoet'
nfs-mailpoet-premium:
driver: local
driver_opts:
type: nfs
o: addr=host.docker.internal,nolock
device: ':/System/Volumes/Data${PWD}/mailpoet-premium'