Skip to content

Commit 2d47478

Browse files
committed
Note privileged runs in docker instructions
1 parent 167d197 commit 2d47478

File tree

1 file changed

+22
-9
lines changed

1 file changed

+22
-9
lines changed

Docker-Quickstart.md

+22-9
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ therefore the container.)
6565
docker run -it --rm node:12
6666
```
6767

68-
Image names are tagged --- this is similar to the above, but now I'm
68+
Image names are tagged this is similar to the above, but now I'm
6969
specifying that I want to use the `12` tag. When you don't specify a
7070
tag as in the above, you get the default of `:latest`.
7171

@@ -86,7 +86,7 @@ Here I added a `bash` at the end, overriding what the `node` image runs
8686
by default. Now I get a `bash` prompt, and I can do whatever I want:
8787
`npm install` stuff (locally or globally), `apt install` OS packages
8888
(you'll need to `apt update` first to get the package directory), and
89-
even `rm /bin/*` --- it's all completely safe, and everything will
89+
even `rm /bin/*` it's all completely safe, and everything will
9090
disappear when the container is done.
9191

9292
But if you know even a little about linux, you'll recognize that this is
@@ -141,7 +141,7 @@ preferable.
141141

142142
This is a more involved example: running the
143143
[fuzzer](https://github.com/microsoft/tsserverfuzzer). First, clone the
144-
repository --- the `node` image includes `git` so you can do it in the
144+
repository the `node` image includes `git` so you can do it in the
145145
container, but you're probably more comfortable with your usual
146146
environment. You'll probably use vscode or whatever... something like
147147

@@ -172,7 +172,7 @@ node@...:/fuzzer$ node lib/Fuzzer/main.js
172172
```
173173

174174
You can now do the usual things, even `git` commands (since the file
175-
format is the same --- just be careful of sneaky EOL translation).
175+
format is the same just be careful of sneaky EOL translation).
176176

177177
I you did all of this, the `git status` should show just a change in
178178
`package-lock.json`, and the last execution got stuck waiting for a
@@ -255,16 +255,29 @@ One problem with running this code is that it requires having `sudo`,
255255
but the `node` image is based on a minimal linux so it doesn't have it.
256256
One way to do it is to fix the code to not use `sudo` if it's running as
257257
root ... but a way around it is to start the container with `bash`, and
258-
run the two `apt` commands to get `sudo` installed. (There are probably
259-
a bunch of other things needed to run this, I'll revise if needed.)
258+
run the two `apt` commands to get `sudo` installed. (In the case of
259+
this `TypeScriptErrorDeltas` code, there is something else that is
260+
needed: see "Privileged runs" below.)
260261

261262
It is obviously tedious to do this installation every time you want to
262-
run it --- ignoring changing the code to not require extra packages, it
263-
is pretty easy to build an image yourself. But I'll finish the quick
264-
part here.
263+
run it ignoring changing the code to not require extra packages, it is
264+
pretty easy to build an image yourself. But I'll finish the quick part
265+
here.
265266

266267
## Extras
267268

269+
### Privileged runs
270+
271+
A docker container is an image running in a sandboxed environment that
272+
is restricted in several ways (like seeing its own FS and network).
273+
There are, however, cases where linux functionality is needed from the
274+
kernel — and mounting things (when you're already *in* the container) is
275+
one such case that is normally blocked. Docker has a bunch of
276+
"capabilities" that are off by default and can be turned on if needed.
277+
In cases like `TypeScriptErrorDeltas`, where you're running known
278+
non-malicious code, you can just enable all of them by adding a
279+
`--privileged` flag.
280+
268281
### `docker build`
269282

270283
The `build` verb can be used with a `Dockerfile` which specifies a

0 commit comments

Comments
 (0)