We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 505d912 commit 76bb6cdCopy full SHA for 76bb6cd
1 file changed
README.md
@@ -4,6 +4,17 @@ Runs [tang](https://github.com/latchset/tang) inside a Rocky Linux docker contai
4
5
## Usage
6
7
+It is recommended to use the latest versioned release e.g v1.0.0. To avoid needing to update the README
8
+each time, the documentation will use the `latest` tag.
9
+
10
+Simplest example:
11
12
+```
13
+docker run -d -p 8080:80 -v tang-db:/var/db/tang ghcr.io/stackhpc/tang:latest
14
15
16
+Using host networking with a custom port:
17
18
```
-docker run -d -p 8080:80 -v tang-db:/var/db/tang stackhpc/tang
19
+docker run -e TANG_LISTEN_PORT=1234 -d --network host -v tang-db:/var/db/tang ghcr.io/stackhpc/tang:latest
20
0 commit comments