-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mike Zrimsek
committed
Jun 19, 2024
1 parent
1ddf4a5
commit 6d1ed43
Showing
5 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# BookBounty | ||
|
||
[BookBounty](https://github.com/TheWicklowWolf/BookBounty) is an application to extend Radarr to allow for automatic querying from Library Genesis. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
services: | ||
bookbounty: | ||
image: thewicklowwolf/bookbounty:latest | ||
container_name: bookbounty | ||
ports: | ||
- 5000:5000 | ||
volumes: | ||
- ${CONFIG_DIR}/bookbounty:/bookbounty/config | ||
- ${DOWNLOADS_DIR}:/bookbounty/downloads | ||
- /etc/localtime:/etc/localtime:ro | ||
restart: unless-stopped |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
services: | ||
bookbounty: | ||
image: thewicklowwolf/bookbounty:latest | ||
container_name: bookbounty | ||
volumes: | ||
- ${CONFIG_DIR}/bookbounty:/bookbounty/config | ||
- ${DOWNLOADS_DIR}:/bookbounty/downloads | ||
- /etc/localtime:/etc/localtime:ro | ||
environment: | ||
- readarr_address=${READARR_ADDRESS} | ||
- readarr_api_key=${READARR_API_KEY} | ||
networks: | ||
- public | ||
labels: | ||
- "traefik.enable=true" | ||
- "traefik.http.routers.bookbounty.rule=Host(`${APP_URL}`)" | ||
- "traefik.http.routers.bookbounty.entrypoints=websecure" | ||
- "traefik.http.routers.bookbounty.tls.certresolver=tlsresolver" | ||
- "traefik.http.routers.bookbounty.middlewares=authelia@docker" | ||
- "traefik.http.services.bookbounty.loadbalancer.server.port=5000" | ||
- "com.centurylinklabs.watchtower.enable=true" | ||
restart: unless-stopped | ||
|
||
networks: | ||
public: | ||
external: | ||
name: ${TRAEFIK_PUBLIC_NETWORK} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters