📝 Updated Docs

This commit is contained in:
Nikhil Badyal
2022-11-04 23:26:57 +05:30
parent c97fecac2e
commit 54705b1049
+5 -4
View File
@@ -45,6 +45,7 @@ You can use any of the following methods to build.
<img src="https://i.imgur.com/S5d7qAO.png" width="700" style="left">
- 🐳With Docker Compose
Windows/Mac users simply install Docker Desktop. If using Linux see below
1. Install Docker(Skip if already installed)
```bash
@@ -53,8 +54,6 @@ You can use any of the following methods to build.
```
2. Grant Permissions with(Skip if already there)
```bash
sudo usermod -a -G docker ec2-user
sudo usermod -a -G docker $USER
sudo chmod 777 /var/run/docker.sock
```
3. Install Docker compose(Skip if already installed or using **_`Docker Desktop`_**)
@@ -71,7 +70,8 @@ You can use any of the following methods to build.
```bash
cd docker-py-revanced
```
6. Run script with
6. Update `.env` file if you want some customization(See notes)
7. Run script with
```shell
docker-compose up
```
@@ -87,7 +87,8 @@ You can use any of the following methods to build.
```shell
docker run -v "$(pwd)"/apks:/app/apks/ nikhilbadyal/docker-py-revanced
```
You can pass below envs with `-e` flag.
You can pass below envs(See notes) with `-e` flag or use `--env-file`
[flag](https://docs.docker.com/engine/reference/commandline/run/#options).
- 🫠Without Docker