@@ -65,7 +65,7 @@ therefore the container.)
65
65
docker run -it --rm node:12
66
66
```
67
67
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
69
69
specifying that I want to use the ` 12 ` tag. When you don't specify a
70
70
tag as in the above, you get the default of ` :latest ` .
71
71
@@ -86,7 +86,7 @@ Here I added a `bash` at the end, overriding what the `node` image runs
86
86
by default. Now I get a ` bash ` prompt, and I can do whatever I want:
87
87
` npm install ` stuff (locally or globally), ` apt install ` OS packages
88
88
(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
90
90
disappear when the container is done.
91
91
92
92
But if you know even a little about linux, you'll recognize that this is
@@ -141,7 +141,7 @@ preferable.
141
141
142
142
This is a more involved example: running the
143
143
[ 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
145
145
container, but you're probably more comfortable with your usual
146
146
environment. You'll probably use vscode or whatever... something like
147
147
@@ -172,7 +172,7 @@ node@...:/fuzzer$ node lib/Fuzzer/main.js
172
172
```
173
173
174
174
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).
176
176
177
177
I you did all of this, the ` git status ` should show just a change in
178
178
` 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`,
255
255
but the ` node ` image is based on a minimal linux so it doesn't have it.
256
256
One way to do it is to fix the code to not use ` sudo ` if it's running as
257
257
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.)
260
261
261
262
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.
265
266
266
267
## Extras
267
268
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
+
268
281
### ` docker build `
269
282
270
283
The ` build ` verb can be used with a ` Dockerfile ` which specifies a
0 commit comments