Files
piratepoet/docker-compose.override.macos-sample.yml
Sam Najian fdbb0d974e Expose Storybook port to the host
[MAILPOET-4078]
2022-02-07 15:16:15 +01: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"