Install Node and Gulp

Hello there @adriaan.wakefield :wave: and welcome to Kinsta Community!

I’ve just tested this on my Windows 11 machine, and could install Node/NPM as well as Gulp within the devkinsta_fpm docker container (which runs on Ubuntu 20.04). Though I only tried to install them and don’t have any experiences to use them with my local sites (in DevKinsta).

You might want to try the same with the following steps to install them in that docker container:

  1. open CMD to open the command prompt on Windows

  2. In that Command Prompt window, you may want to enter to the devkinsta_fpm docker container with this command line:
    docker exec -it devkinsta_fpm bash

  3. I then installed Node by following the installations steps (1-3) here

as we can seen from the screenshot above, I was able to install it, and can see the node -v and npm -v returned with their versions installed.

  1. I then continued to install the gulp-cli ( with -g parameter ) as shown here

and as we can see from the screenshot above, gulp was installed and I could run gulp -v that returns with the CLI version.

  1. After that I also followed the instruction there to run: npm install gulp

as we can see from the above, the command seemed to be successful (and it created node_modules folder and the other 2 files: package-lock.json and package.json )

Hopefully this will help you to install Node/NPM and Gulp on your devkinsta_fpm docker container. :crossed_fingers:

Best regards,
Agus