Skip to content
This repository was archived by the owner on Jul 18, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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