Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
g0ldyy authored Jun 25, 2024
1 parent 02c6d85 commit bc710fc
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
# comet
Stremio's fastest torrent/debrid search add-on.

# Installation
## With Docker
- Simply run the Docker image
```
docker run -p 8000:8000 -d \
--name comet \
-e FASTAPI_HOST=0.0.0.0 \
-e FASTAPI_PORT=8000 \
-e FASTAPI_WORKERS=1 \
-e CACHE_TTL=86400 \
-e DEBRID_PROXY_URL=http://127.0.0.1:1080 \
-e JACKETT_URL=http://127.0.0.1:9117 \
-e JACKETT_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX \
-e JACKETT_INDEXERS=INDEXER_NAME_CHANGETHIS1,INDEXER_NAME_CHANGETHIS2 \
-e JACKETT_TIMEOUT=30 \
-e GET_TORRENT_TIMEOUT=5 \
g0ldyy/comet
```
- To update your container

- Find your existing container name
```sh
docker ps
```

- Stop your existing container
```sh
docker stop <CONTAINER_ID>
```

- Remove your existing container
```sh
docker rm <CONTAINER_ID>
```

- Pull the latest version from docker hub
```sh
docker pull g0ldyy/comet
```

- Finally, rerun your docker run command found in step one

# Real-Debrid
to bypass Real-Debrid's IP blacklist, start a cloudflare-warp container: https://github.com/cmj2002/warp-docker

0 comments on commit bc710fc

Please sign in to comment.