Skip to content

Commit

Permalink
add bookbounty
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Zrimsek committed Jun 19, 2024
1 parent 1ddf4a5 commit 6d1ed43
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ As a side note, many of these setups also include Kubernetes configurations. If
- [Ghost](./services/ghost) - A simple blogging platform
- [Paperless-NGX](./services/paperless-ngx) - A PDF processing and management server
- [IT-Tools](./services/it-tools) - A collection of tools for Developers and IT professionals
- [BookBounty](./services/bookbounty) - An application to extend Radarr to allow for automatic querying from Library Genesis
- [Databases](./databases)
- [CloudBeaver](./services/databases/cloudbeaver) - A web-based database management tool
- [SQLite-Browser](./services/databases/sqlite-browser) - A GUI for SQLite databases
Expand Down
3 changes: 3 additions & 0 deletions services/bookbounty/README.md
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.
11 changes: 11 additions & 0 deletions services/bookbounty/docker-compose.yml
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
27 changes: 27 additions & 0 deletions services/bookbounty/traefik.docker-compose.yml
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}
2 changes: 1 addition & 1 deletion services/it-tools/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ services:
container_name: it-tools
image: "corentinth/it-tools:latest"
ports:
- "8080:80"
- "9191:80"
restart: unless-stopped

0 comments on commit 6d1ed43

Please sign in to comment.