mirror of
https://github.com/linuxserver/docker-heimdall.git
synced 2026-04-12 21:41:38 +09:00
Compare commits
3 Commits
developmen
...
developmen
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f380906965 | ||
|
|
bf8cad83a2 | ||
|
|
a8bf32ca02 |
4
.github/CONTRIBUTING.md
vendored
4
.github/CONTRIBUTING.md
vendored
@@ -105,10 +105,10 @@ docker build \
|
|||||||
-t linuxserver/heimdall:latest .
|
-t linuxserver/heimdall:latest .
|
||||||
```
|
```
|
||||||
|
|
||||||
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
|
The ARM variants can be built on x86_64 hardware and vice versa using `lscr.io/linuxserver/qemu-static`
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset
|
||||||
```
|
```
|
||||||
|
|
||||||
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
|
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
|
||||||
|
|||||||
@@ -70,13 +70,14 @@ jobs:
|
|||||||
if [[ -n "${triggered_branches}" ]] || [[ -n "${skipped_branches}" ]]; then
|
if [[ -n "${triggered_branches}" ]] || [[ -n "${skipped_branches}" ]]; then
|
||||||
if [[ -n "${triggered_branches}" ]]; then
|
if [[ -n "${triggered_branches}" ]]; then
|
||||||
NOTIFY_BRANCHES="**Triggered:** ${triggered_branches} \n"
|
NOTIFY_BRANCHES="**Triggered:** ${triggered_branches} \n"
|
||||||
|
NOTIFY_BUILD_URL="**Build URL:** https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-heimdall/activity/ \n"
|
||||||
|
echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****"
|
||||||
fi
|
fi
|
||||||
if [[ -n "${skipped_branches}" ]]; then
|
if [[ -n "${skipped_branches}" ]]; then
|
||||||
NOTIFY_BRANCHES="${NOTIFY_BRANCHES}**Skipped:** ${skipped_branches} \n"
|
NOTIFY_BRANCHES="${NOTIFY_BRANCHES}**Skipped:** ${skipped_branches} \n"
|
||||||
fi
|
fi
|
||||||
echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****"
|
|
||||||
echo "**** Notifying Discord ****"
|
echo "**** Notifying Discord ****"
|
||||||
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903,
|
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903,
|
||||||
"description": "**Package Check Build(s) Triggered for heimdall** \n'"${NOTIFY_BRANCHES}"'**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-heimdall/activity/"' \n"}],
|
"description": "**Package Check Build(s) for heimdall** \n'"${NOTIFY_BRANCHES}"''"${NOTIFY_BUILD_URL}"'"}],
|
||||||
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
|
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
|
||||||
fi
|
fi
|
||||||
|
|||||||
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@@ -894,7 +894,7 @@ pipeline {
|
|||||||
echo '{"tag_name":"'${META_TAG}'",\
|
echo '{"tag_name":"'${META_TAG}'",\
|
||||||
"target_commitish": "development",\
|
"target_commitish": "development",\
|
||||||
"name": "'${META_TAG}'",\
|
"name": "'${META_TAG}'",\
|
||||||
"body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**'${EXT_REPO}' Changes:**\\n\\n' > start
|
"body": "**CI Report:**\\n\\n'${CI_URL:-N/A}'\\n\\n**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**'${EXT_REPO}' Changes:**\\n\\n' > start
|
||||||
printf '","draft": false,"prerelease": true}' >> releasebody.json
|
printf '","draft": false,"prerelease": true}' >> releasebody.json
|
||||||
paste -d'\\0' start releasebody.json > releasebody.json.done
|
paste -d'\\0' start releasebody.json > releasebody.json.done
|
||||||
curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done'''
|
curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done'''
|
||||||
|
|||||||
@@ -78,6 +78,7 @@ Access the web gui at http://SERVERIP:PORT
|
|||||||
|
|
||||||
This image now supports password protection through htpasswd. Run the following command on your host to generate the htpasswd file `docker exec -it heimdall htpasswd -c /config/nginx/.htpasswd <username>`. Replace <username> with a username of your choice and you will be asked to enter a password. Uncomment the `basic auth` lines in `/config/nginx/site-confs/default.conf` and restart the container.
|
This image now supports password protection through htpasswd. Run the following command on your host to generate the htpasswd file `docker exec -it heimdall htpasswd -c /config/nginx/.htpasswd <username>`. Replace <username> with a username of your choice and you will be asked to enter a password. Uncomment the `basic auth` lines in `/config/nginx/site-confs/default.conf` and restart the container.
|
||||||
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
To help you get started creating a container from this image you can either use docker-compose or the docker cli.
|
To help you get started creating a container from this image you can either use docker-compose or the docker cli.
|
||||||
@@ -282,10 +283,10 @@ docker build \
|
|||||||
-t lscr.io/linuxserver/heimdall:development .
|
-t lscr.io/linuxserver/heimdall:development .
|
||||||
```
|
```
|
||||||
|
|
||||||
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
|
The ARM variants can be built on x86_64 hardware and vice versa using `lscr.io/linuxserver/qemu-static`
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset
|
||||||
```
|
```
|
||||||
|
|
||||||
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
|
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ ca-certificates-bundle 20240705-r0 apk
|
|||||||
carbonphp/carbon-doctrine-types 2.1.0 php-composer
|
carbonphp/carbon-doctrine-types 2.1.0 php-composer
|
||||||
catatonit 0.2.0-r0 apk
|
catatonit 0.2.0-r0 apk
|
||||||
clue/stream-filter v1.7.0 php-composer
|
clue/stream-filter v1.7.0 php-composer
|
||||||
composer 2.8.1 binary
|
composer 2.8.3 binary
|
||||||
composer/class-map-generator 1.1.0 php-composer
|
composer/class-map-generator 1.1.0 php-composer
|
||||||
composer/pcre 3.1.1 php-composer
|
composer/pcre 3.1.1 php-composer
|
||||||
coreutils 9.5-r1 apk
|
coreutils 9.5-r1 apk
|
||||||
@@ -81,13 +81,13 @@ libbz2 1.0.8-r6 apk
|
|||||||
libcrypto3 3.3.2-r1 apk
|
libcrypto3 3.3.2-r1 apk
|
||||||
libcurl 8.9.1-r2 apk
|
libcurl 8.9.1-r2 apk
|
||||||
libedit 20240517.3.1-r0 apk
|
libedit 20240517.3.1-r0 apk
|
||||||
libexpat 2.6.3-r0 apk
|
libexpat 2.6.4-r0 apk
|
||||||
libgcc 13.2.1_git20240309-r0 apk
|
libgcc 13.2.1_git20240309-r0 apk
|
||||||
libidn2 2.3.7-r0 apk
|
libidn2 2.3.7-r0 apk
|
||||||
libintl 0.22.5-r0 apk
|
libintl 0.22.5-r0 apk
|
||||||
libmd 1.1.0-r0 apk
|
libmd 1.1.0-r0 apk
|
||||||
libncursesw 6.4_p20240420-r1 apk
|
libncursesw 6.4_p20240420-r1 apk
|
||||||
libpq 16.4-r0 apk
|
libpq 16.5-r0 apk
|
||||||
libproc2 4.0.4-r0 apk
|
libproc2 4.0.4-r0 apk
|
||||||
libpsl 0.21.5-r1 apk
|
libpsl 0.21.5-r1 apk
|
||||||
libssl3 3.3.2-r1 apk
|
libssl3 3.3.2-r1 apk
|
||||||
@@ -129,30 +129,30 @@ php-http/message 1.16.0 php-composer
|
|||||||
php-http/message-factory 1.1.0 php-composer
|
php-http/message-factory 1.1.0 php-composer
|
||||||
php-http/multipart-stream-builder 1.3.0 php-composer
|
php-http/multipart-stream-builder 1.3.0 php-composer
|
||||||
php-http/promise 1.3.0 php-composer
|
php-http/promise 1.3.0 php-composer
|
||||||
php83 8.3.13-r0 apk
|
php83 8.3.14-r0 apk
|
||||||
php83-common 8.3.13-r0 apk
|
php83-common 8.3.14-r0 apk
|
||||||
php83-ctype 8.3.13-r0 apk
|
php83-ctype 8.3.14-r0 apk
|
||||||
php83-curl 8.3.13-r0 apk
|
php83-curl 8.3.14-r0 apk
|
||||||
php83-dom 8.3.13-r0 apk
|
php83-dom 8.3.14-r0 apk
|
||||||
php83-fileinfo 8.3.13-r0 apk
|
php83-fileinfo 8.3.14-r0 apk
|
||||||
php83-fpm 8.3.13-r0 apk
|
php83-fpm 8.3.14-r0 apk
|
||||||
php83-iconv 8.3.13-r0 apk
|
php83-iconv 8.3.14-r0 apk
|
||||||
php83-intl 8.3.13-r0 apk
|
php83-intl 8.3.14-r0 apk
|
||||||
php83-mbstring 8.3.13-r0 apk
|
php83-mbstring 8.3.14-r0 apk
|
||||||
php83-mysqlnd 8.3.13-r0 apk
|
php83-mysqlnd 8.3.14-r0 apk
|
||||||
php83-opcache 8.3.13-r0 apk
|
php83-opcache 8.3.14-r0 apk
|
||||||
php83-openssl 8.3.13-r0 apk
|
php83-openssl 8.3.14-r0 apk
|
||||||
php83-pdo 8.3.13-r0 apk
|
php83-pdo 8.3.14-r0 apk
|
||||||
php83-pdo_mysql 8.3.13-r0 apk
|
php83-pdo_mysql 8.3.14-r0 apk
|
||||||
php83-pdo_pgsql 8.3.13-r0 apk
|
php83-pdo_pgsql 8.3.14-r0 apk
|
||||||
php83-pdo_sqlite 8.3.13-r0 apk
|
php83-pdo_sqlite 8.3.14-r0 apk
|
||||||
php83-phar 8.3.13-r0 apk
|
php83-phar 8.3.14-r0 apk
|
||||||
php83-session 8.3.13-r0 apk
|
php83-session 8.3.14-r0 apk
|
||||||
php83-simplexml 8.3.13-r0 apk
|
php83-simplexml 8.3.14-r0 apk
|
||||||
php83-tokenizer 8.3.13-r0 apk
|
php83-tokenizer 8.3.14-r0 apk
|
||||||
php83-xml 8.3.13-r0 apk
|
php83-xml 8.3.14-r0 apk
|
||||||
php83-xmlwriter 8.3.13-r0 apk
|
php83-xmlwriter 8.3.14-r0 apk
|
||||||
php83-zip 8.3.13-r0 apk
|
php83-zip 8.3.14-r0 apk
|
||||||
phpdocumentor/reflection-common 2.2.0 php-composer
|
phpdocumentor/reflection-common 2.2.0 php-composer
|
||||||
phpdocumentor/type-resolver 1.8.0 php-composer
|
phpdocumentor/type-resolver 1.8.0 php-composer
|
||||||
phpoption/phpoption 1.9.2 php-composer
|
phpoption/phpoption 1.9.2 php-composer
|
||||||
|
|||||||
Reference in New Issue
Block a user