Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d872f48
Update permissions on workflow templates
thespad Jun 3, 2025
c758936
Remove armhf from arch table
thespad Jun 3, 2025
1339b29
Merge branch 'master' into remove-armhf
thespad Jun 3, 2025
c0f74be
keep sanitized and raw external versions separate in external trigger
aptalca Jun 3, 2025
8610b23
Clarify logs
aptalca Jun 3, 2025
93e7a7f
Remove fleet
quietsy Jun 3, 2025
6e3040d
Merge pull request #337 from linuxserver/remove-armhf
thespad Jun 3, 2025
f2d093e
Merge pull request #339 from linuxserver/ext_trigger_sani
aptalca Jun 3, 2025
09059fd
Merge pull request #338 from quietsy/master
j0nnymoe Jun 7, 2025
864b2ca
Retrieve syft image tag from jenkins env vars, default to latest
aptalca Jun 10, 2025
bb00a6d
use CI_SYFT_IMAGE_TAG for the ci test, with fall back to SYFT_IMAGE_TAG
aptalca Jun 10, 2025
6d87c54
add selkies blurb for readmes (#341)
thelamer Jun 16, 2025
600f6a1
Merge pull request #344 from linuxserver/monthly-syft
aptalca Jun 22, 2025
7430366
append more options to selkies blurb
thelamer Jun 26, 2025
47f91b5
add working path for watermark
thelamer Jun 28, 2025
fb96c88
general blurb cleanup emphasize https and nvidia encoding support
thelamer Jun 28, 2025
0b21d68
Add selkies note to requires
Roxedus Jul 1, 2025
2a86f24
Merge pull request #345 from linuxserver/monthly-unraid-selkies
Roxedus Jul 1, 2025
48274ba
Merge branch 'master' into monthly
thelamer Jul 2, 2025
a42dbd4
rebase with master
thelamer Jul 7, 2025
9058702
Merge branch 'master' into monthly
aptalca Aug 20, 2025
5c8ef5a
add custom ws port to selkies blurb (#348)
thelamer Aug 22, 2025
4fbb6e7
check for riscv64 artifacts (#347)
aptalca Aug 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ This container is based on [Docker Baseimage Selkies](https://github.com/linuxse
| :----: | --- |
| `CUSTOM_PORT` | Internal HTTP port. Defaults to `{% if external_http_port is defined %}{{ external_http_port }}{% else %}3000{% endif %}`. |
| `CUSTOM_HTTPS_PORT` | Internal HTTPS port. Defaults to `{% if external_https_port is defined %}{{ external_https_port }}{% else %}3001{% endif %}`. |
| `CUSTOM_WS_PORT` | Internal port the container listens on for websockets if it needs to be swapped from the default 8082. |
| `CUSTOM_USER` | Username for HTTP Basic Auth. Defaults to `abc`. |
| `PASSWORD` | Password for HTTP Basic Auth. If unset, authentication is disabled. |
| `SUBFOLDER` | Application subfolder for reverse proxy configurations. Must include leading and trailing slashes, e.g., `/subfolder/`. |
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/github/templates/external_trigger.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
echo "Sanitized version \`${EXT_RELEASE_SANITIZED}\` already pushed, exiting" >> $GITHUB_STEP_SUMMARY
exit 0
{% if external_type == "alpine_repo" and better_vars.MULTIARCH == 'true' %}
elif [[ $(curl -sL "{{ better_vars.DIST_REPO }}aarch64/APKINDEX.tar.gz" | tar -xz -C /tmp && awk '/^P:'"{{ better_vars.DIST_REPO_PACKAGES }}"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://') != "${EXT_RELEASE}" ]]{% if build_armhf %} || [[ $(curl -sL "{{ better_vars.DIST_REPO }}armv7/APKINDEX.tar.gz" | tar -xz -C /tmp && awk '/^P:'"{{ better_vars.DIST_REPO_PACKAGES }}"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://') != "${EXT_RELEASE}" ]]{% endif %}; then
elif [[ $(curl -sL "{{ better_vars.DIST_REPO }}aarch64/APKINDEX.tar.gz" | tar -xz -C /tmp && awk '/^P:'"{{ better_vars.DIST_REPO_PACKAGES }}"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://') != "${EXT_RELEASE}" ]]{% if build_riscv64 %} || [[ $(curl -sL "{{ better_vars.DIST_REPO }}riscv64/APKINDEX.tar.gz" | tar -xz -C /tmp && awk '/^P:'"{{ better_vars.DIST_REPO_PACKAGES }}"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://') != "${EXT_RELEASE}" ]]{% endif %}; then
echo "New version \`${EXT_RELEASE}\` found; but not all arch repos updated yet; exiting" >> $GITHUB_STEP_SUMMARY
FAILURE_REASON="New version ${EXT_RELEASE} for {{ project_name }} tag {{ release_tag }} is detected, however not all arch repos are updated yet. Will try again later."
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903,
Expand Down