Skip to content

Commit fe328aa

Browse files
committed
Fix Docker volume mount docs
1 parent be0ba12 commit fe328aa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Once you have a valid configuration file, you can try Buildarr on your local mac
113113
The following command will mount the current folder into the Docker container so `buildarr.yml` can be read, and start Buildarr in daemon mode.
114114

115115
```bash
116-
$ docker run -d --name buildarr -v ./:/config -e PUID=$(id -u) -e PGID=$(id -g) callum027/buildarr:latest
116+
$ docker run -d --name buildarr -v $(pwd):/config -e PUID=$(id -u) -e PGID=$(id -g) callum027/buildarr:latest
117117
```
118118

119119
If installed using `pip`, simply run the `buildarr` CLI command.
@@ -196,7 +196,7 @@ Buildarr is still early in development, and even currently implemented features
196196
If you encounter an issue or error while using Buildarr, please do a Buildarr ad-hoc run with verbose log output by executing `buildarr run --log-level DEBUG` and making an issue on [our GitHub repository](https://github.com/buildarr/buildarr/issues/new) explaining the issue and attaching the output. (Please ensure that any API keys or other sensitive information are obfuscated before submitting.)
197197

198198
```bash
199-
$ docker run -d --name buildarr -v ./:/config -e PUID=$(id -u) -e PGID=$(id -g) callum027/buildarr:latest run --log-level DEBUG
199+
$ docker run -d --name buildarr -v $(pwd):/config -e PUID=$(id -u) -e PGID=$(id -g) callum027/buildarr:latest run --log-level DEBUG
200200
```
201201

202202
For developers looking to make a contribution to this project, thank you! Documentation of the internal APIs is still in the works, so for now, the best way to learn how Buildarr works is to clone the project and have a look at the comments and docstrings.

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Once you have a valid configuration file, you can try Buildarr on your local mac
111111
The following command will mount the current folder into the Docker container so `buildarr.yml` can be read, and start Buildarr in daemon mode.
112112

113113
```bash
114-
$ docker run -d --name buildarr -v ./:/config -e PUID=$(id -u) -e PGID=$(id -g) callum027/buildarr:latest
114+
$ docker run -d --name buildarr -v $(pwd):/config -e PUID=$(id -u) -e PGID=$(id -g) callum027/buildarr:latest
115115
```
116116

117117
If installed using `pip`, simply run the `buildarr` CLI command.
@@ -194,7 +194,7 @@ Buildarr is still early in development, and even currently implemented features
194194
If you encounter an issue or error while using Buildarr, please do a Buildarr ad-hoc run with verbose log output by executing `buildarr run --log-level DEBUG` and making an issue on [our GitHub repository](https://github.com/buildarr/buildarr/issues/new) explaining the issue and attaching the output. (Please ensure that any API keys or other sensitive information are obfuscated before submitting.)
195195

196196
```bash
197-
$ docker run -d --name buildarr -v ./:/config -e PUID=$(id -u) -e PGID=$(id -g) callum027/buildarr:latest run --log-level DEBUG
197+
$ docker run -d --name buildarr -v $(pwd):/config -e PUID=$(id -u) -e PGID=$(id -g) callum027/buildarr:latest run --log-level DEBUG
198198
```
199199

200200
For developers looking to make a contribution to this project, thank you! Documentation of the internal APIs is still in the works, so for now, the best way to learn how Buildarr works is to clone the project and have a look at the comments and docstrings.

0 commit comments

Comments
 (0)