diff --git a/docker-compose.yaml b/docker-compose.yaml index b43c674593..e79106c88f 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -8,7 +8,7 @@ services: image: tooljet-plugins:development platform: linux/x86_64 volumes: - - plugins_vol:/app/plugins + - ./plugins:/app/plugins command: npm run --prefix plugins start client: @@ -19,7 +19,7 @@ services: platform: linux/x86_64 volumes: - ./frontend:/app/frontend:delegated - - plugins_vol:/app/plugins + - ./plugins:/app/plugins - /app/frontend/node_modules/ ports: - 8082:8082 @@ -38,7 +38,7 @@ services: - postgres volumes: - ./server:/app/server:delegated - - plugins_vol:/app/plugins + - ./plugins:/app/plugins - /app/server/node_modules/ - ./.env:/app/.env - ./.env.test:/app/.env.test @@ -61,8 +61,3 @@ services: volumes: postgres: - plugins_vol: - driver_opts: - type: none - device: ${PWD}/plugins - o: bind diff --git a/docs/docs/contributing-guide/setup/docker.md b/docs/docs/contributing-guide/setup/docker.md index a4082bb0ec..51bd544571 100644 --- a/docs/docs/contributing-guide/setup/docker.md +++ b/docs/docs/contributing-guide/setup/docker.md @@ -26,6 +26,11 @@ docker-compose version 1.26.2, build eefe0d31 ## Setting up +:::tip +If you are setting up on a Windows machine, we advise you to setup Docker desktop with WSL2. +Please find more information [here](https://docs.docker.com/desktop/windows/wsl/). +::: + 1. Clone the repository ```bash git clone https://github.com/tooljet/tooljet.git