From fa66439c09c6f63031a235c19cdcc0845b29b3dc Mon Sep 17 00:00:00 2001 From: navaneeth Date: Wed, 11 Aug 2021 09:48:57 +0530 Subject: [PATCH] [docs] fix docker compose setup guide --- docs/docs/contributing-guide/setup/docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/contributing-guide/setup/docker.md b/docs/docs/contributing-guide/setup/docker.md index 15d2174f25..d6d414b3e8 100644 --- a/docs/docs/contributing-guide/setup/docker.md +++ b/docs/docs/contributing-guide/setup/docker.md @@ -81,7 +81,7 @@ If you make any changes to the codebase/pull the latest changes from upstream, t Caveat: -1. If the changes include database migrations or new gem additions in the Gemfile, you would need to restart the ToolJet server container by running `docker-compose restart server`. +1. If the changes include database migrations or new npm package additions in the package.json, you would need to restart the ToolJet server container by running `docker-compose restart server`. 2. If you need to add a new binary or system libary to the container itself, you would need to add those dependencies in `docker/server.Dockerfile.dev` and then rebuild the ToolJet server image. You can do that by running `docker-compose build server`. Once that completes you can start everything normally with `docker-compose up`.