You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/greetings.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,6 @@ jobs:
8
8
steps:
9
9
- uses: actions/first-interaction@v1
10
10
with:
11
-
issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-sqlitebrowser/blob/master/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-sqlitebrowser/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.'
12
12
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-sqlitebrowser/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!'
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ The architectures supported by this image are:
56
56
| :----: | :----: | ---- |
57
57
| x86-64 | ✅ | amd64-\<version tag\>|
58
58
| arm64 | ✅ | arm64v8-\<version tag\>|
59
-
| armhf| ✅ | arm32v7-\<version tag\>|
59
+
| armhf| ✅ | arm32v7-\<version tag\>|
60
60
61
61
## Application Setup
62
62
@@ -82,7 +82,7 @@ services:
82
82
environment:
83
83
- PUID=1000
84
84
- PGID=1000
85
-
- TZ=Europe/London
85
+
- TZ=Etc/UTC
86
86
volumes:
87
87
- /path/to/config:/config
88
88
ports:
@@ -98,11 +98,12 @@ docker run -d \
98
98
--security-opt seccomp=unconfined `#optional` \
99
99
-e PUID=1000 \
100
100
-e PGID=1000 \
101
-
-e TZ=Europe/London \
101
+
-e TZ=Etc/UTC \
102
102
-p 3000:3000 \
103
103
-v /path/to/config:/config \
104
104
--restart unless-stopped \
105
105
lscr.io/linuxserver/sqlitebrowser:latest
106
+
106
107
```
107
108
108
109
## Parameters
@@ -114,7 +115,7 @@ Container images are configured using parameters passed at runtime (such as thos
114
115
|`-p 3000`| Sqlitebrowser desktop gui. |
115
116
|`-e PUID=1000`| for UserID - see below for explanation |
116
117
|`-e PGID=1000`| for GroupID - see below for explanation |
117
-
|`-e TZ=Europe/London`|Specify a timezone to use EG Europe/London. |
118
+
|`-e TZ=Etc/UTC`|specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
118
119
|`-v /config`| Users home directory in the container, stores program settings and potentially dump files. |
119
120
|`--security-opt seccomp=unconfined`| For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker. |
0 commit comments