Skip to content

Commit dabc1b2

Browse files
Bot Updating Templated Files
1 parent c3f6eb5 commit dabc1b2

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ trim_trailing_whitespace = false
1515
indent_style = space
1616
indent_size = 2
1717

18-
[{**.sh,root/etc/cont-init.d/**,root/etc/services.d/**}]
18+
[{**.sh,root/etc/s6-overlay/s6-rc.d/**,root/etc/cont-init.d/**,root/etc/services.d/**}]
1919
indent_style = space
2020
indent_size = 4

.github/workflows/greetings.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
steps:
99
- uses: actions/first-interaction@v1
1010
with:
11-
issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-calibre-web/blob/master/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-calibre-web/blob/master/.github/ISSUE_TEMPLATE/issue.feature.yml) issue templates!'
11+
issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.'
1212
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-calibre-web/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!'
1313
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/permissions.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Permission check
2+
on:
3+
pull_request:
4+
paths:
5+
- '**/run'
6+
- '**/finish'
7+
jobs:
8+
permission_check:
9+
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The architectures supported by this image are:
5858
| :----: | :----: | ---- |
5959
| x86-64 || amd64-\<version tag\> |
6060
| arm64 || arm64v8-\<version tag\> |
61-
| armhf|| arm32v7-\<version tag\> |
61+
| armhf || arm32v7-\<version tag\> |
6262

6363
## Version Tags
6464

@@ -68,7 +68,6 @@ This image provides various versions that are available via tags. Please read th
6868
| :----: | :----: |--- |
6969
| latest || Releases of Calibre-Web |
7070
| nightly || Commits to the master branch of Calibre-Web |
71-
7271
## Application Setup
7372

7473
Webui can be found at `http://your-ip:8083`
@@ -103,7 +102,7 @@ services:
103102
environment:
104103
- PUID=1000
105104
- PGID=1000
106-
- TZ=Europe/London
105+
- TZ=Etc/UTC
107106
- DOCKER_MODS=linuxserver/mods:universal-calibre #optional
108107
- OAUTHLIB_RELAX_TOKEN_SCOPE=1 #optional
109108
volumes:
@@ -121,14 +120,15 @@ docker run -d \
121120
--name=calibre-web \
122121
-e PUID=1000 \
123122
-e PGID=1000 \
124-
-e TZ=Europe/London \
123+
-e TZ=Etc/UTC \
125124
-e DOCKER_MODS=linuxserver/mods:universal-calibre `#optional` \
126125
-e OAUTHLIB_RELAX_TOKEN_SCOPE=1 `#optional` \
127126
-p 8083:8083 \
128127
-v /path/to/data:/config \
129128
-v /path/to/calibre/library:/books \
130129
--restart unless-stopped \
131130
lscr.io/linuxserver/calibre-web:latest
131+
132132
```
133133

134134
## Parameters
@@ -140,7 +140,7 @@ Container images are configured using parameters passed at runtime (such as thos
140140
| `-p 8083` | WebUI |
141141
| `-e PUID=1000` | for UserID - see below for explanation |
142142
| `-e PGID=1000` | for GroupID - see below for explanation |
143-
| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. |
143+
| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
144144
| `-e DOCKER_MODS=linuxserver/mods:universal-calibre` | #optional & **x86-64 only** Adds the ability to perform ebook conversion |
145145
| `-e OAUTHLIB_RELAX_TOKEN_SCOPE=1` | Optionally set this to allow Google OAUTH to work |
146146
| `-v /config` | Where calibre-web stores the internal database and config. |

0 commit comments

Comments
 (0)