mirror of
https://github.com/11notes/docker-kms-gui.git
synced 2025-10-23 04:52:15 +00:00
new README workflow
This commit is contained in:
46
.github/workflows/docker.yml
vendored
46
.github/workflows/docker.yml
vendored
@@ -8,6 +8,11 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
default: 'false'
|
default: 'false'
|
||||||
|
|
||||||
|
readme:
|
||||||
|
description: 'set WORKFLOW_GITHUB_README'
|
||||||
|
required: false
|
||||||
|
default: 'false'
|
||||||
|
|
||||||
image:
|
image:
|
||||||
description: 'set IMAGE'
|
description: 'set IMAGE'
|
||||||
required: false
|
required: false
|
||||||
@@ -32,6 +37,7 @@ jobs:
|
|||||||
docker:
|
docker:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
permissions:
|
permissions:
|
||||||
|
actions: read
|
||||||
contents: write
|
contents: write
|
||||||
packages: write
|
packages: write
|
||||||
security-events: write
|
security-events: write
|
||||||
@@ -39,6 +45,8 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: init / checkout
|
- name: init / checkout
|
||||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
|
||||||
|
with:
|
||||||
|
ref: master
|
||||||
|
|
||||||
- name: init / inputs to env
|
- name: init / inputs to env
|
||||||
if: github.event_name == 'workflow_dispatch'
|
if: github.event_name == 'workflow_dispatch'
|
||||||
@@ -62,8 +70,10 @@ jobs:
|
|||||||
|
|
||||||
: # set defaults
|
: # set defaults
|
||||||
echo "IMAGE_ARCH=${json_arch:-linux/amd64,linux/arm64}" >> $GITHUB_ENV
|
echo "IMAGE_ARCH=${json_arch:-linux/amd64,linux/arm64}" >> $GITHUB_ENV
|
||||||
echo "WORKFLOW_GRYPE_SEVERITY_CUTOFF=${json_grype_severity:-high}" >> $GITHUB_ENV;
|
|
||||||
echo "WORKFLOW_GITHUB_RELEASE=${input_release:-true}" >> $GITHUB_ENV;
|
echo "WORKFLOW_GITHUB_RELEASE=${input_release:-true}" >> $GITHUB_ENV;
|
||||||
|
echo "WORKFLOW_GITHUB_README=${input_readme:-true}" >> $GITHUB_ENV;
|
||||||
|
echo "WORKFLOW_GRYPE_SCAN=${json_grype_scan:-true}" >> $GITHUB_ENV;
|
||||||
|
echo "WORKFLOW_GRYPE_SEVERITY_CUTOFF=${json_grype_severity:-high}" >> $GITHUB_ENV;
|
||||||
|
|
||||||
: # create tags for semver, stable and other shenanigans
|
: # create tags for semver, stable and other shenanigans
|
||||||
LOCAL_SHA=$(git rev-parse --short HEAD)
|
LOCAL_SHA=$(git rev-parse --short HEAD)
|
||||||
@@ -76,7 +86,7 @@ jobs:
|
|||||||
LOCAL_TAGS="${LOCAL_IMAGE}:${LOCAL_SHA}"
|
LOCAL_TAGS="${LOCAL_IMAGE}:${LOCAL_SHA}"
|
||||||
if [ ! -z ${input_semverprefix} ]; then LOCAL_SEMVER_PREFIX="${input_semverprefix}-"; fi
|
if [ ! -z ${input_semverprefix} ]; then LOCAL_SEMVER_PREFIX="${input_semverprefix}-"; fi
|
||||||
if [ ! -z ${input_semversuffix} ]; then LOCAL_SEMVER_SUFFIX="-${input_semversuffix}"; fi
|
if [ ! -z ${input_semversuffix} ]; then LOCAL_SEMVER_SUFFIX="-${input_semversuffix}"; fi
|
||||||
if [ ! -z ${json_semver_rc} ]; then LOCAL_SEMVER_RC="-${json_semver_rc}"; fi
|
if [ ! -z ${json_semver_rc} ]; then LOCAL_SEMVER_RC="${json_semver_rc}"; fi
|
||||||
if [ ! -z ${LOCAL_SEMVER_MAJOR} ]; then LOCAL_TAGS="${LOCAL_TAGS},${LOCAL_IMAGE}:${LOCAL_SEMVER_PREFIX}${LOCAL_SEMVER_MAJOR}${LOCAL_SEMVER_SUFFIX}"; fi
|
if [ ! -z ${LOCAL_SEMVER_MAJOR} ]; then LOCAL_TAGS="${LOCAL_TAGS},${LOCAL_IMAGE}:${LOCAL_SEMVER_PREFIX}${LOCAL_SEMVER_MAJOR}${LOCAL_SEMVER_SUFFIX}"; fi
|
||||||
if [ ! -z ${LOCAL_SEMVER_MINOR} ]; then LOCAL_TAGS="${LOCAL_TAGS},${LOCAL_IMAGE}:${LOCAL_SEMVER_PREFIX}${LOCAL_SEMVER_MAJOR}.${LOCAL_SEMVER_MINOR}${LOCAL_SEMVER_SUFFIX}"; fi
|
if [ ! -z ${LOCAL_SEMVER_MINOR} ]; then LOCAL_TAGS="${LOCAL_TAGS},${LOCAL_IMAGE}:${LOCAL_SEMVER_PREFIX}${LOCAL_SEMVER_MAJOR}.${LOCAL_SEMVER_MINOR}${LOCAL_SEMVER_SUFFIX}"; fi
|
||||||
if [ ! -z ${LOCAL_SEMVER_PATCH} ]; then LOCAL_TAGS="${LOCAL_TAGS},${LOCAL_IMAGE}:${LOCAL_SEMVER_PREFIX}${LOCAL_SEMVER_MAJOR}.${LOCAL_SEMVER_MINOR}.${LOCAL_SEMVER_PATCH}${LOCAL_SEMVER_SUFFIX}"; fi
|
if [ ! -z ${LOCAL_SEMVER_PATCH} ]; then LOCAL_TAGS="${LOCAL_TAGS},${LOCAL_IMAGE}:${LOCAL_SEMVER_PREFIX}${LOCAL_SEMVER_MAJOR}.${LOCAL_SEMVER_MINOR}.${LOCAL_SEMVER_PATCH}${LOCAL_SEMVER_SUFFIX}"; fi
|
||||||
@@ -89,7 +99,7 @@ jobs:
|
|||||||
if [ ! -z ${input_uid} ]; then echo "IMAGE_UID=${input_uid}" >> $GITHUB_ENV; else echo "IMAGE_UID=${json_uid:-1000}" >> $GITHUB_ENV; fi
|
if [ ! -z ${input_uid} ]; then echo "IMAGE_UID=${input_uid}" >> $GITHUB_ENV; else echo "IMAGE_UID=${json_uid:-1000}" >> $GITHUB_ENV; fi
|
||||||
if [ ! -z ${input_gid} ]; then echo "IMAGE_GID=${input_gid}" >> $GITHUB_ENV; else echo "IMAGE_GID=${json_gid:-1000}" >> $GITHUB_ENV; fi
|
if [ ! -z ${input_gid} ]; then echo "IMAGE_GID=${input_gid}" >> $GITHUB_ENV; else echo "IMAGE_GID=${json_gid:-1000}" >> $GITHUB_ENV; fi
|
||||||
|
|
||||||
: # set rc, prefix or suffix globally
|
: # set rc, prefix or suffix globally for semver and version
|
||||||
echo "IMAGE_SEMVER_PREFIX=${LOCAL_SEMVER_PREFIX}" >> $GITHUB_ENV
|
echo "IMAGE_SEMVER_PREFIX=${LOCAL_SEMVER_PREFIX}" >> $GITHUB_ENV
|
||||||
echo "IMAGE_SEMVER_SUFFIX=${LOCAL_SEMVER_SUFFIX}" >> $GITHUB_ENV
|
echo "IMAGE_SEMVER_SUFFIX=${LOCAL_SEMVER_SUFFIX}" >> $GITHUB_ENV
|
||||||
echo "IMAGE_VERSION_RC=${LOCAL_SEMVER_RC}" >> $GITHUB_ENV
|
echo "IMAGE_VERSION_RC=${LOCAL_SEMVER_RC}" >> $GITHUB_ENV
|
||||||
@@ -131,6 +141,7 @@ jobs:
|
|||||||
${{ env.IMAGE }}:${{ env.IMAGE_SEMVER_PREFIX }}grype${{ env.IMAGE_SEMVER_SUFFIX }}
|
${{ env.IMAGE }}:${{ env.IMAGE_SEMVER_PREFIX }}grype${{ env.IMAGE_SEMVER_SUFFIX }}
|
||||||
|
|
||||||
- name: grype / scan
|
- name: grype / scan
|
||||||
|
if: env.WORKFLOW_GRYPE_SCAN == 'true'
|
||||||
id: grype-scan
|
id: grype-scan
|
||||||
uses: anchore/scan-action@abae793926ec39a78ab18002bc7fc45bbbd94342
|
uses: anchore/scan-action@abae793926ec39a78ab18002bc7fc45bbbd94342
|
||||||
with:
|
with:
|
||||||
@@ -138,15 +149,6 @@ jobs:
|
|||||||
severity-cutoff: ${{ env.WORKFLOW_GRYPE_SEVERITY_CUTOFF }}
|
severity-cutoff: ${{ env.WORKFLOW_GRYPE_SEVERITY_CUTOFF }}
|
||||||
by-cve: true
|
by-cve: true
|
||||||
output-format: 'sarif'
|
output-format: 'sarif'
|
||||||
output-file: ${{ runner.temp }}/_github_home/grype.sarif
|
|
||||||
|
|
||||||
- name: grype / report / sarif to markdown
|
|
||||||
id: sarif-to-md
|
|
||||||
if: success() || failure()
|
|
||||||
continue-on-error: true
|
|
||||||
uses: 11notes/action-sarif-to-markdown@bc689850bd33a1037ea1d0a609ab4ea14b3c4396
|
|
||||||
with:
|
|
||||||
sarif_file: grype.sarif
|
|
||||||
|
|
||||||
- name: grype / delete tag
|
- name: grype / delete tag
|
||||||
if: steps.grype-tag.outcome == 'success'
|
if: steps.grype-tag.outcome == 'success'
|
||||||
@@ -157,11 +159,13 @@ jobs:
|
|||||||
--header 'content-type: application/json' \
|
--header 'content-type: application/json' \
|
||||||
--fail
|
--fail
|
||||||
|
|
||||||
- name: grype / report / upload
|
- name: codeql / upload
|
||||||
|
id: codeql-upload
|
||||||
if: steps.grype-scan.outcome == 'success'
|
if: steps.grype-scan.outcome == 'success'
|
||||||
uses: github/codeql-action/upload-sarif@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169
|
uses: github/codeql-action/upload-sarif@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169
|
||||||
with:
|
with:
|
||||||
sarif_file: ${{ steps.grype-scan.outputs.sarif }}
|
sarif_file: ${{ steps.grype-scan.outputs.sarif }}
|
||||||
|
wait-for-processing: false
|
||||||
category: grype
|
category: grype
|
||||||
|
|
||||||
- name: docker / build & push
|
- name: docker / build & push
|
||||||
@@ -212,6 +216,22 @@ jobs:
|
|||||||
}' \
|
}' \
|
||||||
--fail
|
--fail
|
||||||
|
|
||||||
|
- name: github / create README.md
|
||||||
|
if: env.WORKFLOW_GITHUB_README == 'true'
|
||||||
|
id: github-readme
|
||||||
|
uses: 11notes/action-docker-readme@v1.1.1
|
||||||
|
with:
|
||||||
|
sarif_file: ${{ steps.grype-scan.outputs.sarif }}
|
||||||
|
|
||||||
|
- name: github / commit & push
|
||||||
|
if: steps.github-readme.outcome == 'success'
|
||||||
|
run: |
|
||||||
|
git config user.name "github-actions[bot]"
|
||||||
|
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||||
|
git add .
|
||||||
|
git commit -m "update README.md"
|
||||||
|
git push
|
||||||
|
|
||||||
- name: docker / push README.md to docker hub
|
- name: docker / push README.md to docker hub
|
||||||
if: hashFiles('README.md') != ''
|
if: hashFiles('README.md') != ''
|
||||||
uses: christian-korneck/update-container-description-action@d36005551adeaba9698d8d67a296bd16fa91f8e8
|
uses: christian-korneck/update-container-description-action@d36005551adeaba9698d8d67a296bd16fa91f8e8
|
||||||
|
4
.github/workflows/tags.yml
vendored
4
.github/workflows/tags.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
workflow: docker.yml
|
workflow: docker.yml
|
||||||
token: "${{ secrets.REPOSITORY_TOKEN }}"
|
token: "${{ secrets.REPOSITORY_TOKEN }}"
|
||||||
inputs: '{ "release":"true" }'
|
inputs: '{ "release":"true", "readme":"true" }'
|
||||||
|
|
||||||
docker-unraid:
|
docker-unraid:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -22,4 +22,4 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
workflow: docker.yml
|
workflow: docker.yml
|
||||||
token: "${{ secrets.REPOSITORY_TOKEN }}"
|
token: "${{ secrets.REPOSITORY_TOKEN }}"
|
||||||
inputs: '{ "release":"false", "uid":"99", "gid":"100", "semversuffix":"unraid" }'
|
inputs: '{ "release":"false", "readme":"false", "uid":"99", "gid":"100", "semversuffix":"unraid" }'
|
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,2 +1 @@
|
|||||||
maintain/
|
maintain/
|
||||||
project*
|
|
4
.json
4
.json
@@ -13,6 +13,10 @@
|
|||||||
"description":"Activate any version of Windows and Office, forever",
|
"description":"Activate any version of Windows and Office, forever",
|
||||||
"parent":{
|
"parent":{
|
||||||
"image":"11notes/kms:465f4d1"
|
"image":"11notes/kms:465f4d1"
|
||||||
|
},
|
||||||
|
"built":{
|
||||||
|
"py-kms":"https://github.com/Py-KMS-Organization/py-kms",
|
||||||
|
"CustomIcon/pykms-frontend":"https://github.com/CustomIcon/pykms-frontend"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
76
README.md
76
README.md
@@ -1,76 +0,0 @@
|
|||||||

|
|
||||||
|
|
||||||
# 🏔️ kms-gui on Alpine
|
|
||||||
[<img src="https://img.shields.io/badge/github-source-blue?logo=github&color=040308">](https://github.com/11notes/docker-kms-gui)[<img src="https://img.shields.io/github/issues/11notes/docker-kms-gui?color=7842f5">](https://github.com/11notes/docker-kms-gui/issues)
|
|
||||||
|
|
||||||
**Activate any version of Windows and Office, forever**
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
# MAIN TAGS 🏷️
|
|
||||||
These are the main tags for the image. There is also a tag for each commit and its shorthand sha256 value.
|
|
||||||
|
|
||||||
* [465f4d1](https://hub.docker.com/r/11notes/kms-gui/tags?name=465f4d1)
|
|
||||||
* [stable](https://hub.docker.com/r/11notes/kms-gui/tags?name=stable)
|
|
||||||
* [latest](https://hub.docker.com/r/11notes/kms-gui/tags?name=latest)
|
|
||||||
* [465f4d1-unraid](https://hub.docker.com/r/11notes/kms-gui/tags?name=465f4d1-unraid)
|
|
||||||
* [stable-unraid](https://hub.docker.com/r/11notes/kms-gui/tags?name=stable-unraid)
|
|
||||||
* [latest-unraid](https://hub.docker.com/r/11notes/kms-gui/tags?name=latest-unraid)
|
|
||||||
|
|
||||||
|
|
||||||
# SYNOPSIS 📖
|
|
||||||
**What can I do with this?** This image will run a web GUI for your [11notes/kms](https://hub.docker.com/r/11notes/kms) server.
|
|
||||||
|
|
||||||
# COMPOSE ✂️
|
|
||||||
```yaml
|
|
||||||
name: "kms"
|
|
||||||
services:
|
|
||||||
kms:
|
|
||||||
image: "11notes/kms:stable"
|
|
||||||
container_name: "kms"
|
|
||||||
environment:
|
|
||||||
TZ: Europe/Zurich
|
|
||||||
volumes:
|
|
||||||
- "var:/kms/var"
|
|
||||||
ports:
|
|
||||||
- "1688:1688/tcp"
|
|
||||||
restart: always
|
|
||||||
kms-gui:
|
|
||||||
image: "11notes/kms-gui:465f4d1"
|
|
||||||
container_name: "kms-gui"
|
|
||||||
environment:
|
|
||||||
TZ: Europe/Zurich
|
|
||||||
volumes:
|
|
||||||
- "var:/kms/var"
|
|
||||||
ports:
|
|
||||||
- "8080:8080/tcp"
|
|
||||||
restart: always
|
|
||||||
volumes:
|
|
||||||
var:
|
|
||||||
```
|
|
||||||
|
|
||||||
# ENVIRONMENT 📝
|
|
||||||
| Parameter | Value | Default |
|
|
||||||
| --- | --- | --- |
|
|
||||||
| `TZ` | [Time Zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) | |
|
|
||||||
| `DEBUG` | Will activate debug option for container image and app (if available) | |
|
|
||||||
| `KMS_GUI_STYLE` | switch the UI style of the webinterface (py-kms, custom-icon) | custom-icon |
|
|
||||||
|
|
||||||
# SOURCE 💾
|
|
||||||
* [11notes/kms-gui](https://github.com/11notes/docker-kms-gui)
|
|
||||||
|
|
||||||
# PARENT IMAGE 🏛️
|
|
||||||
* [11notes/kms:465f4d1](https://hub.docker.com/r/11notes/kms)
|
|
||||||
|
|
||||||
# BUILT WITH 🧰
|
|
||||||
* [py-kms](https://github.com/Py-KMS-Organization/py-kms)
|
|
||||||
* [CustomIcon/pykms-frontend](https://github.com/CustomIcon/pykms-frontend)
|
|
||||||
* [alpine](https://alpinelinux.org)
|
|
||||||
|
|
||||||
# GENERAL TIPS 📌
|
|
||||||
* Use a reverse proxy like Traefik, Nginx, HAproxy to terminate TLS and to protect your endpoints
|
|
||||||
* Use Let’s Encrypt DNS-01 challenge to obtain valid SSL certificates for your services
|
|
||||||
|
|
||||||
|
|
||||||
# ElevenNotes™️
|
|
||||||
This image is provided to you at your own risk. Always make backups before updating an image to a different version. Check the [releases](https://github.com/11notes/docker-kms-gui/releases) for breaking changes. If you have any problems with using this image simply raise an [issue](https://github.com/11notes/docker-kms-gui/issues), thanks. If you have a question or inputs please create a new [discussion](https://github.com/11notes/docker-kms-gui/discussions) instead of an issue. You can find all my other repositories on [github](https://github.com/11notes?tab=repositories).
|
|
BIN
img/GUI.png
BIN
img/GUI.png
Binary file not shown.
Before Width: | Height: | Size: 52 KiB |
BIN
img/webGUICustomIcon.png
Normal file
BIN
img/webGUICustomIcon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 38 KiB |
18
project.md
Normal file
18
project.md
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|

|
||||||
|
|
||||||
|
${{ content_synopsis }} This image will run a web GUI for your [11notes/kms](https://hub.docker.com/r/11notes/kms) server.
|
||||||
|
|
||||||
|
${{ content_compose }}
|
||||||
|
|
||||||
|
${{ content_defaults }}
|
||||||
|
|
||||||
|
${{ content_environment }}
|
||||||
|
| `KMS_GUI_STYLE` | switch the UI style of the webinterface (py-kms, custom-icon) | custom-icon, py-kms |
|
||||||
|
|
||||||
|
${{ content_source }}
|
||||||
|
|
||||||
|
${{ content_parent }}
|
||||||
|
|
||||||
|
${{ content_built }}
|
||||||
|
|
||||||
|
${{ content_tips }}
|
Reference in New Issue
Block a user