diff options
author | 2019-12-14 23:29:00 -0800 | |
---|---|---|
committer | 2019-12-14 23:39:14 -0800 | |
commit | 93dab0fa061fdfcf3fdb59210a220ae01c3b4a2e (patch) | |
tree | 13273836b8845ea56121dfe34e5ad661b497255e /README.md | |
parent | Update the Python version in README (diff) |
Use bash instead of ash
Forgot to do this after switching to Debian.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -122,17 +122,17 @@ The HTML will output to `./htmlcov/` by default ### The `devsh` Helper Script -This script starts an `ash` shell inside the venv Docker container and attaches to it. Unlike the production image, the venv image that is built by this script contains dev dependencies too. The project directory is mounted inside the container so any filesystem changes made inside the container affect the actual local project. +This script starts an `bash` shell inside the venv Docker container and attaches to it. Unlike the production image, the venv image that is built by this script contains dev dependencies too. The project directory is mounted inside the container so any filesystem changes made inside the container affect the actual local project. #### Usage ``` -pipenv run devsh [--build [--clean]] [ash_args ...] +pipenv run devsh [--build [--clean]] [bash_args ...] ``` * `--build` Build the venv Docker image * `--clean` Clean up dangling Docker images (only works if `--build` precedes it) -* `ash_args` Arguments to pass to `/bin/ash` (for example `-c "echo hello"`). An interactive shell is launched if no arguments are given +* `bash_args` Arguments to pass to `/bin/bash` (for example `-c "echo hello"`). An interactive shell is launched if no arguments are given #### Invoking NsJail |