Skip to content

Commit

Permalink
Merge branch 'g0ldyy:main' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
thelastblt authored Jul 23, 2024
2 parents 07d6272 + 517a5f7 commit 25d5b63
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,18 @@ ElfHosted offer "one-click" [private Comet instances](https://elfhosted.com/app/
```

- Finally, re-run the docker run command

### With Docker Compose
- Copy *compose.yaml* in a directory
- Copy *env-sample* to *.env* in the same directory
- Pull the latest version from docker hub
```sh
docker compose pull
```
- Run
```sh
docker compose up -d
```

## Debrid IP Blacklist
To bypass Real-Debrid's (or AllDebrid) IP blacklist, start a cloudflare-warp container: https://github.com/cmj2002/warp-docker
Expand Down
6 changes: 4 additions & 2 deletions comet/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -700,8 +700,10 @@
document.getElementById("debridApiKey").value = settings.debridApiKey;
document.getElementById("debridStreamProxyPassword").value = settings.debridStreamProxyPassword;
document.getElementById("indexers").value = settings.indexers;
document.getElementById("languages").value = settings.languages;
document.getElementById("resolutions").value = settings.resolutions;
if (settings.languages != "All")
document.getElementById("languages").value = settings.languages;
if (settings.resolutions != "All")
document.getElementById("resolutions").value = settings.resolutions;
}

</script>
Expand Down

0 comments on commit 25d5b63

Please sign in to comment.