Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix docker compose on MacOS ## Problem When calling `docker compose up`, the `pwa` service fails with a strange error on MacOS: ``` pwa-1 | yarn run v1.22.22 pwa-1 | $ storybook dev -p 3000 pwa-1 | /bin/sh: 1: storybook: not found pwa-1 | info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. pwa-1 | error Command failed with exit code 127. ``` It seems the container doesn't find the node_modules at all. ## Solution Add a second volume for the node_modules. * Fix formatting
- Loading branch information