mirror of
https://github.com/osmarks/ngircd.git
synced 2024-12-12 09:50:29 +00:00
Fix quoting in code examples in doc/Container.md
This commit is contained in:
parent
bbcaf628f4
commit
ddba126307
@ -21,7 +21,8 @@ If you are using Git, you can tag the built image like this (use the ID of the
|
|||||||
newly built image!):
|
newly built image!):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
podman tag <container_id> "ngircd:$(git describe --tags | sed 's/rel-//g')"
|
tag=$(git describe --tags | sed 's/rel-//g')
|
||||||
|
podman tag <container_id> "ngircd:${tag}"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Running the container
|
## Running the container
|
||||||
@ -50,7 +51,7 @@ mkdir -p /host/path/to/ngircd/conf.d
|
|||||||
touch /host/path/to/ngircd/conf.d/my.conf
|
touch /host/path/to/ngircd/conf.d/my.conf
|
||||||
podman run --name=ngircd --detach \
|
podman run --name=ngircd --detach \
|
||||||
-p 127.0.0.1:6667:6667 \
|
-p 127.0.0.1:6667:6667 \
|
||||||
-v /host/path/to/ngircd/conf.d:/opt/ngircd/etc/ngircd.conf.d' \
|
-v "/host/path/to/ngircd/conf.d:/opt/ngircd/etc/ngircd.conf.d" \
|
||||||
ngircd:<tag>
|
ngircd:<tag>
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -63,9 +64,9 @@ With Docker and Podman, you can pass arguments to the `ngircd` binary inside of
|
|||||||
the container by simply appending it to the "run" command line like this:
|
the container by simply appending it to the "run" command line like this:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
podman run --name=ngircd --rm -it \
|
podman run --rm -it \
|
||||||
-v /host/path/to/ngircd/conf.d:/opt/ngircd/etc/ngircd.conf.d' \
|
-v "/host/path/to/ngircd/conf.d:/opt/ngircd/etc/ngircd.conf.d" \
|
||||||
ngircd:<tag>
|
ngircd:<tag> \
|
||||||
--configtest
|
--configtest
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user