diff --git a/blueprints/calibre/docker-compose.yml b/blueprints/calibre/docker-compose.yml new file mode 100644 index 0000000..3594e7b --- /dev/null +++ b/blueprints/calibre/docker-compose.yml @@ -0,0 +1,20 @@ +version: '3.8' + +services: + calibre: + image: linuxserver/calibre:7.26.0 + restart: unless-stopped + environment: + - PASSWORD=${PASSWORD} + - TZ=Etc/UTC + - PUID=1000 + - PGID=1000 + ports: + - 8080 + volumes: + - books:/books + - data:/config + +volumes: + books: + data: \ No newline at end of file diff --git a/blueprints/calibre/logo.png b/blueprints/calibre/logo.png new file mode 100644 index 0000000..219243a Binary files /dev/null and b/blueprints/calibre/logo.png differ diff --git a/blueprints/calibre/template.toml b/blueprints/calibre/template.toml new file mode 100644 index 0000000..1e8f0e0 --- /dev/null +++ b/blueprints/calibre/template.toml @@ -0,0 +1,12 @@ +[variables] +main_domain = "${domain}" +password = "${password:16}" + +[config] +[[config.domains]] +serviceName = "calibre" +port = 8080 +host = "${main_domain}" + +[config.env] +PASSWORD = "${password}" \ No newline at end of file diff --git a/meta.json b/meta.json index 45686ad..57012ba 100644 --- a/meta.json +++ b/meta.json @@ -2276,5 +2276,21 @@ "ai", "self-hosted" ] + }, + { + "id": "calibre", + "name": "Calibre", + "version": "7.26.0", + "description": "Calibre is a comprehensive e-book management tool designed to organize, convert, and read your e-book collection. It supports most of the major e-book formats and is compatible with various e-book reader devices.", + "logo": "logo.png", + "links": { + "github": "https://github.com/kovidgoyal/calibre", + "website": "https://calibre-ebook.com/", + "docs": "https://manual.calibre-ebook.com/" + }, + "tags": [ + "Documents", + "E-Commerce" + ] } ] \ No newline at end of file