Skip to content

Commit

Permalink
Fix docker run instructions (Fixes #351)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bios-Marcel committed Oct 27, 2024
1 parent 444650d commit 02b8332
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,18 @@ Run the following, replacing `<port>` with the port you want the container to be
reachable from outside:

```shell
docker run --pull always --env PORT=<port> -p <port>:8080 biosmarcel/scribble.rs:latest
docker run --pull always --env PORT=8080 -p <port>:8080 biosmarcel/scribble.rs:latest
```

For example:

```shell
docker run --pull always --env PORT=80 -p 80:8080 biosmarcel/scribble.rs:latest
docker run --pull always --env PORT=8080 -p 80:8080 biosmarcel/scribble.rs:latest
```

Note that you can change `8080` too, but it is the internal port of the
container and you shouldn't have to change it under normal circumstances.

## Building / Running

Dependencies:
Expand Down

0 comments on commit 02b8332

Please sign in to comment.