Skip to content

Commit 17ed751

Browse files
committed
update docs and testing
1 parent 99fc370 commit 17ed751

File tree

5 files changed

+15
-12
lines changed

5 files changed

+15
-12
lines changed

.github/workflows/external_trigger.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
3030
echo "> External trigger running off of master branch. To disable this trigger, add \`sqlitebrowser_master\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY
3131
printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY
32-
EXT_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.21/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
32+
EXT_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.22/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
3333
&& awk '/^P:'"sqlitebrowser"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://')
3434
echo "Type is \`alpine_repo\`" >> $GITHUB_STEP_SUMMARY
3535
if grep -q "^sqlitebrowser_master_${EXT_RELEASE}" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
@@ -107,7 +107,7 @@ jobs:
107107
if [ "${EXT_RELEASE_SANITIZED}" == "${IMAGE_VERSION}" ]; then
108108
echo "Sanitized version \`${EXT_RELEASE_SANITIZED}\` already pushed, exiting" >> $GITHUB_STEP_SUMMARY
109109
exit 0
110-
elif [[ $(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.21/community/aarch64/APKINDEX.tar.gz" | tar -xz -C /tmp && awk '/^P:'"sqlitebrowser"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://') != "${EXT_RELEASE}" ]]; then
110+
elif [[ $(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.22/community/aarch64/APKINDEX.tar.gz" | tar -xz -C /tmp && awk '/^P:'"sqlitebrowser"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://') != "${EXT_RELEASE}" ]]; then
111111
echo "New version \`${EXT_RELEASE}\` found; but not all arch repos updated yet; exiting" >> $GITHUB_STEP_SUMMARY
112112
FAILURE_REASON="New version ${EXT_RELEASE} for sqlitebrowser tag latest is detected, however not all arch repos are updated yet. Will try again later."
113113
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903,

Jenkinsfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ pipeline {
2727
DEV_DOCKERHUB_IMAGE = 'lsiodev/sqlitebrowser'
2828
PR_DOCKERHUB_IMAGE = 'lspipepr/sqlitebrowser'
2929
DIST_IMAGE = 'alpine'
30-
DIST_TAG = '3.21'
31-
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.21/community/'
30+
DIST_TAG = '3.22'
31+
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.22/community/'
3232
DIST_REPO_PACKAGES = 'sqlitebrowser'
3333
MULTIARCH='true'
3434
CI='true'
3535
CI_WEB='true'
36-
CI_PORT='3000'
37-
CI_SSL='false'
36+
CI_PORT='3001'
37+
CI_SSL='true'
3838
CI_DELAY='120'
3939
CI_DOCKERENV='TZ=US/Pacific'
4040
CI_AUTH='user:password'

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,13 @@ The architectures supported by this image are:
5858

5959
The application can be accessed at:
6060

61-
* http://yourhost:3000/
6261
* https://yourhost:3001/
6362

63+
### Strict reverse proxies
64+
65+
This image uses a self-signed certificate by default. This naturally means the scheme is `https`.
66+
If you are using a reverse proxy which validates certificates, you need to [disable this check for the container](https://docs.linuxserver.io/faq#strict-proxy).
67+
6468
**Modern GUI desktop apps may have compatibility issues with the latest Docker syscall restrictions. You can use Docker with the `--security-opt seccomp=unconfined` setting to allow these syscalls on hosts with older Kernels or libseccomp versions.**
6569

6670
### Security

jenkins-vars.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ repo_vars:
1616
- DEV_DOCKERHUB_IMAGE = 'lsiodev/sqlitebrowser'
1717
- PR_DOCKERHUB_IMAGE = 'lspipepr/sqlitebrowser'
1818
- DIST_IMAGE = 'alpine'
19-
- DIST_TAG = '3.21'
20-
- DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.21/community/'
19+
- DIST_TAG = '3.22'
20+
- DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.22/community/'
2121
- DIST_REPO_PACKAGES = 'sqlitebrowser'
2222
- MULTIARCH='true'
2323
- CI='true'
2424
- CI_WEB='true'
25-
- CI_PORT='3000'
26-
- CI_SSL='false'
25+
- CI_PORT='3001'
26+
- CI_SSL='true'
2727
- CI_DELAY='120'
2828
- CI_DOCKERENV='TZ=US/Pacific'
2929
- CI_AUTH='user:password'

readme-vars.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ app_setup_block_enabled: true
3737
app_setup_block: |
3838
The application can be accessed at:
3939
40-
* http://yourhost:3000/
4140
* https://yourhost:3001/
4241
# init diagram
4342
init_diagram: |

0 commit comments

Comments
 (0)