Don't suggest using sudo with Docker

Thanks for the tip, @imomaliev.
This commit is contained in:
Łukasz Langa 2020-03-17 11:35:41 +01:00
parent e44e0a6598
commit 991f19031c
No known key found for this signature in database
GPG Key ID: B26995E310250568

View File

@ -6,13 +6,13 @@ a selected PyPI package and seeing the results between _Black_ versions.
## Build
```console
$ [sudo] docker build -t black_gallery .
$ docker build -t black_gallery .
```
## Run
```console
$ sudo docker run -it -v /host/output:/output -v /host/input:/input black_gallery:latest [args]
$ docker run -it -v /host/output:/output -v /host/input:/input black_gallery:latest [args]
```
```