Since the Docker install script can have unwanted side effects and since the Replicated install script supports an option to skip the Docker install, we should allow folks to run the installer without running the Docker script. I'm thinking this could be supported in the following ways:
Install the npme bin first and then run the install command with a flag:
npm i npme -g --ignore-scripts
npme install --no-docker
Pass a flag/arg to the autoinstall command on bin installation:
# this
sudo DOCKER=false npm i npme -g --unsafe
# or this
DOCKER=false sudo -E npm i npme -g --unsafe
Here are the supported args from the Replicated install script:
Since the Docker install script can have unwanted side effects and since the Replicated install script supports an option to skip the Docker install, we should allow folks to run the installer without running the Docker script. I'm thinking this could be supported in the following ways:
Install the
npme
bin first and then run the install command with a flag:Pass a flag/arg to the autoinstall command on bin installation:
Here are the supported args from the Replicated install script: