Skip to content

Commit 6b8b162

Browse files
committed
fix doc
1 parent 43c1444 commit 6b8b162

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/getting-started/creating-first-instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ lxc exec my-first-app -- bash
4949
Once you are inside the container's shell, run this command to start a simple Python web server on port `8080`:
5050

5151
```bash
52-
python3 -m http.server 8080
52+
nohup python3 -m http.server 8080 >/tmp/http-server.log 2>&1 &
5353
```
5454

5555
Right now, that web server is running entirely privately. It is only accessible to other containers on your Terrarium network. The public internet cannot see it.

0 commit comments

Comments
 (0)