Skip to content

Commit

Permalink
Merge pull request reisxd#642 from Saibamen/patch-1
Browse files Browse the repository at this point in the history
Use `--pull` in docker commands
  • Loading branch information
shrihankp authored Jan 25, 2023
2 parents bddf1db + 5293158 commit 3fafd07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Clone the repository and `cd` into the directory `revanced-builder`
### Build using `docker-compose`

```bash
docker-compose build --no-cache
docker-compose build --pull --no-cache
```

This builds the Docker image (`--no-cache` is used to build the image from scratch; sometimes the cache might cause version conflicts).
Expand All @@ -53,7 +53,7 @@ To update to a newer version, stop the existing container if it is running, buil
### Build using only `docker`

```bash
docker build . -t <name_of_the_image> --no-cache
docker build . --pull -t <name_of_the_image> --no-cache
```

Run the newly built container:
Expand Down

0 comments on commit 3fafd07

Please sign in to comment.