docs: update docker instructions to include GitHub container registry

This commit is contained in:
Will Norris
2021-08-16 16:30:50 -07:00
parent 2fe3ee9447
commit 944049f284

View File

@@ -31,20 +31,30 @@ doublestar](https://github.com/bmatcuk/doublestar#patterns).
## Running in a Docker Container ## Running in a Docker Container
- Clone the repository using `git clone https://github.com/google/addlicense.git` The simplest way to get the addlicense docker image is to pull from GitHub
- Build your docker container Container Registry:
```bash ```bash
docker build -t google/addlicense . docker pull ghcr.io/google/addlicense:latest
``` ```
- Test the image Alternately, you can build it from source yourself:
```bash ```bash
docker run -it google/addlicense -h docker build -t ghcr.io/google/addlicense .
``` ```
- Usage example Once you have the image, you can test that it works by running:
```bash ```bash
docker run -v ${PWD}:/src -it google/addlicense -c "Google LLC" *.go docker run -it ghcr.io/google/addlicense -h
```
Finally, to run it, mount the directory you want to scan to `/src` and pass the
appropriate addlicense flags:
```bash
docker run -it ghcr.io/google/addlicense -v ${PWD}:/src -c "Google LLC" *.go
``` ```
## license ## license