mirror of
https://github.com/11notes/docker-kms.git
synced 2025-11-16 11:41:25 +00:00
Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bad5f50548 | ||
|
|
e6bf310706 | ||
|
|
46dab8b24f | ||
|
|
b154c116cc | ||
|
|
66090fdadb | ||
|
|
58910eb75d | ||
|
|
06e8f2a63e | ||
|
|
6ec2821901 | ||
|
|
a3a755b54e | ||
|
|
dd0025df2d | ||
|
|
23231c4cbb | ||
|
|
28586cccec | ||
|
|
ce51cbe448 |
117
.github/workflows/docker.yml
vendored
117
.github/workflows/docker.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: create and publish docker image
|
name: docker
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
@@ -7,33 +7,37 @@ on:
|
|||||||
description: 'set WORKFLOW_GITHUB_RELEASE'
|
description: 'set WORKFLOW_GITHUB_RELEASE'
|
||||||
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
|
||||||
|
|
||||||
uid:
|
uid:
|
||||||
description: 'set IMAGE_UID'
|
description: 'set IMAGE_UID'
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
gid:
|
gid:
|
||||||
description: 'set IMAGE_GID'
|
description: 'set IMAGE_GID'
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
semverprefix:
|
semverprefix:
|
||||||
description: 'prefix for semver tags'
|
description: 'prefix for semver tags'
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
semversuffix:
|
semversuffix:
|
||||||
description: 'suffix for semver tags'
|
description: 'suffix for semver tags'
|
||||||
required: false
|
required: false
|
||||||
dispatch:
|
|
||||||
description: 'run dispatch at end'
|
|
||||||
required: false
|
|
||||||
default: 'false'
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- 'v*'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-push-image:
|
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
|
||||||
@@ -41,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'
|
||||||
@@ -64,9 +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_DISPATCH=${input_dispatch:-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)
|
||||||
@@ -75,21 +82,28 @@ jobs:
|
|||||||
LOCAL_SEMVER_PATCH=$(awk -F. '{ print $3 }' <<< ${json_semver_version})
|
LOCAL_SEMVER_PATCH=$(awk -F. '{ print $3 }' <<< ${json_semver_version})
|
||||||
LOCAL_SEMVER_PREFIX=""
|
LOCAL_SEMVER_PREFIX=""
|
||||||
LOCAL_SEMVER_SUFFIX=""
|
LOCAL_SEMVER_SUFFIX=""
|
||||||
|
LOCAL_SEMVER_RC=""
|
||||||
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 ${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
|
||||||
if echo "${LOCAL_TAGS}" | grep -q "${json_semver_stable}" ; then LOCAL_TAGS="${LOCAL_TAGS},${LOCAL_IMAGE}:stable"; fi
|
if echo "${LOCAL_TAGS}" | grep -q "${json_semver_stable}" ; then LOCAL_TAGS="${LOCAL_TAGS},${LOCAL_IMAGE}:${LOCAL_SEMVER_PREFIX}stable${LOCAL_SEMVER_SUFFIX}"; fi
|
||||||
if echo "${LOCAL_TAGS}" | grep -q "${json_semver_latest}" ; then LOCAL_TAGS="${LOCAL_TAGS},${LOCAL_IMAGE}:latest"; fi
|
if echo "${LOCAL_TAGS}" | grep -q "${json_semver_latest}" ; then LOCAL_TAGS="${LOCAL_TAGS},${LOCAL_IMAGE}:${LOCAL_SEMVER_PREFIX}latest${LOCAL_SEMVER_SUFFIX}"; fi
|
||||||
if [ ! -z ${json_semver_tags} ]; then SPECIAL_LOCAL_TAGS=$(echo ${json_semver_tags} | sed 's/,/ /g'); for LOCAL_TAG in ${json_semver_tags}; do LOCAL_TAGS="${LOCAL_TAGS},${LOCAL_IMAGE}:${LOCAL_TAG}"; done; fi
|
if [ ! -z ${json_semver_tags} ]; then SPECIAL_LOCAL_TAGS=$(echo ${json_semver_tags} | sed 's/,/ /g'); for LOCAL_TAG in ${json_semver_tags}; do LOCAL_TAGS="${LOCAL_TAGS},${LOCAL_IMAGE}:${LOCAL_SEMVER_PREFIX}${LOCAL_TAG}${LOCAL_SEMVER_SUFFIX}"; done; fi
|
||||||
echo "IMAGE_TAGS=${LOCAL_TAGS}" >> $GITHUB_ENV
|
echo "IMAGE_TAGS=${LOCAL_TAGS}" >> $GITHUB_ENV
|
||||||
|
|
||||||
: # if for whatever reason UID/GID must be changed at build time
|
: # if for whatever reason UID/GID must be changed at build time
|
||||||
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 for semver and version
|
||||||
|
echo "IMAGE_SEMVER_PREFIX=${LOCAL_SEMVER_PREFIX}" >> $GITHUB_ENV
|
||||||
|
echo "IMAGE_SEMVER_SUFFIX=${LOCAL_SEMVER_SUFFIX}" >> $GITHUB_ENV
|
||||||
|
echo "IMAGE_VERSION_RC=${LOCAL_SEMVER_RC}" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: docker / login to hub
|
- name: docker / login to hub
|
||||||
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
|
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
|
||||||
with:
|
with:
|
||||||
@@ -102,15 +116,16 @@ jobs:
|
|||||||
- name: docker / setup buildx
|
- name: docker / setup buildx
|
||||||
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5
|
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5
|
||||||
|
|
||||||
- name: grype / build & push
|
- name: grype / build & push & tag
|
||||||
|
id: grype-tag
|
||||||
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d
|
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: arch.dockerfile
|
file: arch.dockerfile
|
||||||
push: true
|
push: true
|
||||||
platforms: ${{ env.IMAGE_ARCH }}
|
platforms: ${{ env.IMAGE_ARCH }}
|
||||||
cache-from: type=registry,ref=${{ env.IMAGE }}:buildcache
|
cache-from: type=registry,ref=${{ env.IMAGE }}:${{ env.IMAGE_SEMVER_PREFIX }}buildcache${{ env.IMAGE_SEMVER_SUFFIX }}
|
||||||
cache-to: type=registry,ref=${{ env.IMAGE }}:buildcache,mode=max,compression=zstd,force-compression=true
|
cache-to: type=registry,ref=${{ env.IMAGE }}:${{ env.IMAGE_SEMVER_PREFIX }}buildcache${{ env.IMAGE_SEMVER_SUFFIX }},mode=max,compression=zstd,force-compression=true
|
||||||
build-args: |
|
build-args: |
|
||||||
APP_IMAGE=${{ env.IMAGE }}
|
APP_IMAGE=${{ env.IMAGE }}
|
||||||
APP_NAME=${{ env.json_name }}
|
APP_NAME=${{ env.json_name }}
|
||||||
@@ -118,40 +133,40 @@ jobs:
|
|||||||
APP_ROOT=${{ env.json_root }}
|
APP_ROOT=${{ env.json_root }}
|
||||||
APP_UID=${{ env.IMAGE_UID }}
|
APP_UID=${{ env.IMAGE_UID }}
|
||||||
APP_GID=${{ env.IMAGE_GID }}
|
APP_GID=${{ env.IMAGE_GID }}
|
||||||
NO_CACHE=$(date +%s)
|
APP_VERSION_PREFIX=${{ env.IMAGE_SEMVER_PREFIX }}
|
||||||
|
APP_VERSION_SUFFIX=${{ env.IMAGE_SEMVER_SUFFIX }}
|
||||||
|
APP_VERSION_RC=${{ env.IMAGE_VERSION_RC }}
|
||||||
|
APP_NO_CACHE=$(date +%s)
|
||||||
tags: |
|
tags: |
|
||||||
${{ env.IMAGE }}:grype
|
${{ env.IMAGE }}:${{ env.IMAGE_SEMVER_PREFIX }}grype${{ env.IMAGE_SEMVER_SUFFIX }}
|
||||||
|
|
||||||
- name: grype / scan
|
- name: grype / scan
|
||||||
id: scan
|
if: env.WORKFLOW_GRYPE_SCAN == 'true'
|
||||||
|
id: grype-scan
|
||||||
uses: anchore/scan-action@abae793926ec39a78ab18002bc7fc45bbbd94342
|
uses: anchore/scan-action@abae793926ec39a78ab18002bc7fc45bbbd94342
|
||||||
with:
|
with:
|
||||||
image: ${{ env.IMAGE }}:grype
|
image: ${{ env.IMAGE }}:${{ env.IMAGE_SEMVER_PREFIX }}grype${{ env.IMAGE_SEMVER_SUFFIX }}
|
||||||
severity-cutoff: ${{ env.WORKFLOW_GRYPE_SEVERITY_CUTOFF }}
|
severity-cutoff: ${{ env.WORKFLOW_GRYPE_SEVERITY_CUTOFF }}
|
||||||
|
by-cve: true
|
||||||
- name: grype / report / print
|
output-format: 'sarif'
|
||||||
if: success() || failure()
|
|
||||||
run: cat ${{ steps.scan.outputs.sarif }}
|
|
||||||
|
|
||||||
- name: grype / report / annotation
|
|
||||||
if: success() || failure()
|
|
||||||
uses: Miragon/sarif-report-parse@f8bcc5ece9c2b9a786ff4e7392cca2bb72ae8b4b
|
|
||||||
with:
|
|
||||||
sarif-file: ${{ steps.scan.outputs.sarif }}
|
|
||||||
|
|
||||||
- name: grype / delete tag
|
- name: grype / delete tag
|
||||||
if: success() || failure()
|
if: steps.grype-tag.outcome == 'success'
|
||||||
run: |
|
run: |
|
||||||
curl --request DELETE \
|
curl --request DELETE \
|
||||||
--url https://hub.docker.com/v2/repositories/${{ env.IMAGE }}/tags/grype/ \
|
--url https://hub.docker.com/v2/repositories/${{ env.IMAGE }}/tags/${{ env.IMAGE_SEMVER_PREFIX }}grype${{ env.IMAGE_SEMVER_SUFFIX }}/ \
|
||||||
--header 'authorization: jwt ${{ secrets.DOCKER_TOKEN }}' \
|
--header 'authorization: jwt ${{ secrets.DOCKER_TOKEN }}' \
|
||||||
--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'
|
||||||
uses: github/codeql-action/upload-sarif@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169
|
uses: github/codeql-action/upload-sarif@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169
|
||||||
with:
|
with:
|
||||||
sarif_file: ${{ steps.scan.outputs.sarif }}
|
sarif_file: ${{ steps.grype-scan.outputs.sarif }}
|
||||||
|
wait-for-processing: false
|
||||||
|
category: grype
|
||||||
|
|
||||||
- name: docker / build & push
|
- name: docker / build & push
|
||||||
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d
|
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d
|
||||||
@@ -162,8 +177,8 @@ jobs:
|
|||||||
sbom: true
|
sbom: true
|
||||||
provenance: mode=max
|
provenance: mode=max
|
||||||
platforms: ${{ env.IMAGE_ARCH }}
|
platforms: ${{ env.IMAGE_ARCH }}
|
||||||
cache-from: type=registry,ref=${{ env.IMAGE }}:buildcache
|
cache-from: type=registry,ref=${{ env.IMAGE }}:${{ env.IMAGE_SEMVER_PREFIX }}buildcache${{ env.IMAGE_SEMVER_SUFFIX }}
|
||||||
cache-to: type=registry,ref=${{ env.IMAGE }}:buildcache,mode=max,compression=zstd,force-compression=true
|
cache-to: type=registry,ref=${{ env.IMAGE }}:${{ env.IMAGE_SEMVER_PREFIX }}buildcache${{ env.IMAGE_SEMVER_SUFFIX }},mode=max,compression=zstd,force-compression=true
|
||||||
build-args: |
|
build-args: |
|
||||||
APP_IMAGE=${{ env.IMAGE }}
|
APP_IMAGE=${{ env.IMAGE }}
|
||||||
APP_NAME=${{ env.json_name }}
|
APP_NAME=${{ env.json_name }}
|
||||||
@@ -171,7 +186,10 @@ jobs:
|
|||||||
APP_ROOT=${{ env.json_root }}
|
APP_ROOT=${{ env.json_root }}
|
||||||
APP_UID=${{ env.IMAGE_UID }}
|
APP_UID=${{ env.IMAGE_UID }}
|
||||||
APP_GID=${{ env.IMAGE_GID }}
|
APP_GID=${{ env.IMAGE_GID }}
|
||||||
NO_CACHE=$(date +%s)
|
APP_VERSION_PREFIX=${{ env.IMAGE_SEMVER_PREFIX }}
|
||||||
|
APP_VERSION_SUFFIX=${{ env.IMAGE_SEMVER_SUFFIX }}
|
||||||
|
APP_VERSION_RC=${{ env.IMAGE_VERSION_RC }}
|
||||||
|
APP_NO_CACHE=$(date +%s)
|
||||||
tags: |
|
tags: |
|
||||||
${{ env.IMAGE_TAGS }}
|
${{ env.IMAGE_TAGS }}
|
||||||
|
|
||||||
@@ -198,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.2
|
||||||
|
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
|
||||||
@@ -209,10 +243,3 @@ jobs:
|
|||||||
provider: dockerhub
|
provider: dockerhub
|
||||||
short_description: ${{ env.json_readme_description }}
|
short_description: ${{ env.json_readme_description }}
|
||||||
readme_file: 'README.md'
|
readme_file: 'README.md'
|
||||||
|
|
||||||
- name: github / dispatch workflow
|
|
||||||
if: env.WORKFLOW_DISPATCH == 'true' && env.json_dispatch_workflow != null
|
|
||||||
uses: benc-uk/workflow-dispatch@e2e5e9a103e331dad343f381a29e654aea3cf8fc
|
|
||||||
with:
|
|
||||||
workflow: ${{ env.json_dispatch_workflow }}
|
|
||||||
token: "${{ secrets.REPOSITORY_TOKEN }}"
|
|
||||||
17
.github/workflows/gui.yml
vendored
17
.github/workflows/gui.yml
vendored
@@ -1,17 +0,0 @@
|
|||||||
name: kms-gui
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
kms-gui:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: auto build and update downstream image
|
|
||||||
uses: benc-uk/workflow-dispatch@e2e5e9a103e331dad343f381a29e654aea3cf8fc
|
|
||||||
with:
|
|
||||||
workflow: docker.yml
|
|
||||||
repo: 11notes/docker-kms-gui
|
|
||||||
ref: master
|
|
||||||
token: "${{ secrets.REPOSITORY_TOKEN }}"
|
|
||||||
inputs: '{ "release": "false" }'
|
|
||||||
51
.github/workflows/tags.yml
vendored
Normal file
51
.github/workflows/tags.yml
vendored
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
name: tags
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'v*'
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: build docker image
|
||||||
|
uses: the-actions-org/workflow-dispatch@3133c5d135c7dbe4be4f9793872b6ef331b53bc7
|
||||||
|
with:
|
||||||
|
workflow: docker.yml
|
||||||
|
token: "${{ secrets.REPOSITORY_TOKEN }}"
|
||||||
|
inputs: '{ "release":"true", "readme":"true" }'
|
||||||
|
|
||||||
|
docker-unraid:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: build docker image for unraid community
|
||||||
|
uses: the-actions-org/workflow-dispatch@3133c5d135c7dbe4be4f9793872b6ef331b53bc7
|
||||||
|
with:
|
||||||
|
workflow: docker.yml
|
||||||
|
token: "${{ secrets.REPOSITORY_TOKEN }}"
|
||||||
|
inputs: '{ "release":"false", "readme":"false", "uid":"99", "gid":"100", "semversuffix":"unraid" }'
|
||||||
|
|
||||||
|
kms-gui:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: docker
|
||||||
|
steps:
|
||||||
|
- name: build downstream kms gui
|
||||||
|
uses: the-actions-org/workflow-dispatch@3133c5d135c7dbe4be4f9793872b6ef331b53bc7
|
||||||
|
with:
|
||||||
|
workflow: docker.yml
|
||||||
|
token: "${{ secrets.REPOSITORY_TOKEN }}"
|
||||||
|
repo: 11notes/docker-kms-gui
|
||||||
|
ref: master
|
||||||
|
inputs: '{ "release":"false", "readme":"true" }'
|
||||||
|
|
||||||
|
kms-gui-unraid:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: docker-unraid
|
||||||
|
steps:
|
||||||
|
- name: build downstream kms gui for unraid community
|
||||||
|
uses: the-actions-org/workflow-dispatch@3133c5d135c7dbe4be4f9793872b6ef331b53bc7
|
||||||
|
with:
|
||||||
|
workflow: docker.yml
|
||||||
|
token: "${{ secrets.REPOSITORY_TOKEN }}"
|
||||||
|
repo: 11notes/docker-kms-gui
|
||||||
|
ref: master
|
||||||
|
inputs: '{ "release":"false", "readme":"false", "uid":"99", "gid":"100", "semversuffix":"unraid" }'
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1 @@
|
|||||||
maintain/
|
maintain/
|
||||||
project*
|
|
||||||
7
.json
7
.json
@@ -13,10 +13,9 @@
|
|||||||
"description":"Activate any version of Windows and Office, forever",
|
"description":"Activate any version of Windows and Office, forever",
|
||||||
"parent":{
|
"parent":{
|
||||||
"image":"11notes/alpine:stable"
|
"image":"11notes/alpine:stable"
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
"built":{
|
||||||
"dispatch":{
|
"py-kms":"https://github.com/Py-KMS-Organization/py-kms"
|
||||||
"workflow":"gui.yml"
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
122
README.md
122
README.md
@@ -1,122 +0,0 @@
|
|||||||

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

|
|
||||||

|
|
||||||
|
|
||||||
# SYNOPSIS 📖
|
|
||||||
**What can I do with this?** This image will run a KMS server you can use to activate any version of Windows and Office, forever.
|
|
||||||
|
|
||||||
Works with:
|
|
||||||
- Windows Vista
|
|
||||||
- Windows 7
|
|
||||||
- Windows 8
|
|
||||||
- Windows 8.1
|
|
||||||
- Windows 10
|
|
||||||
- Windows 11
|
|
||||||
- Windows Server 2008
|
|
||||||
- Windows Server 2008 R2
|
|
||||||
- Windows Server 2012
|
|
||||||
- Windows Server 2012 R2
|
|
||||||
- Windows Server 2016
|
|
||||||
- Windows Server 2019
|
|
||||||
- Windows Server 2022
|
|
||||||
- Windows Server 2025
|
|
||||||
- Microsoft Office 2010 ( Volume License )
|
|
||||||
- Microsoft Office 2013 ( Volume License )
|
|
||||||
- Microsoft Office 2016 ( Volume License )
|
|
||||||
- Microsoft Office 2019 ( Volume License )
|
|
||||||
- Microsoft Office 2021 ( Volume License )
|
|
||||||
- Microsoft Office 2024 ( Volume License )
|
|
||||||
|
|
||||||
# VOLUMES 📁
|
|
||||||
* **/var** - Directory of the activation database
|
|
||||||
|
|
||||||
# COMPOSE ✂️
|
|
||||||
```yaml
|
|
||||||
name: "kms"
|
|
||||||
services:
|
|
||||||
kms:
|
|
||||||
image: "11notes/kms:465f4d1"
|
|
||||||
container_name: "kms"
|
|
||||||
environment:
|
|
||||||
TZ: "Europe/Zurich"
|
|
||||||
volumes:
|
|
||||||
- "var:/kms/var"
|
|
||||||
ports:
|
|
||||||
- "1688:1688/tcp"
|
|
||||||
restart: "always"
|
|
||||||
kms-gui:
|
|
||||||
image: "11notes/kms-gui:stable"
|
|
||||||
container_name: "kms-gui"
|
|
||||||
environment:
|
|
||||||
TZ: "Europe/Zurich"
|
|
||||||
volumes:
|
|
||||||
- "var:/kms/var"
|
|
||||||
ports:
|
|
||||||
- "8080:8080/tcp"
|
|
||||||
restart: "always"
|
|
||||||
volumes:
|
|
||||||
var:
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## Windows Server 2025 Datacenter. List of [GVLK](https://learn.microsoft.com/en-us/windows-server/get-started/kms-client-activation-keys)
|
|
||||||
```cmd
|
|
||||||
slmgr /ipk D764K-2NDRG-47T6Q-P8T8W-YP6DF
|
|
||||||
```
|
|
||||||
Add your KMS server information to server via registry
|
|
||||||
```powershell
|
|
||||||
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform" -Name "KeyManagementServiceName" -Value "KMS_IP"
|
|
||||||
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform" -Name "KeyManagementServicePort" -Value "KMS_PORT"
|
|
||||||
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform" -Name "KeyManagementServiceName" -Value "KMS_IP"
|
|
||||||
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform" -Name "KeyManagementServicePort" -Value "KMS_PORT"
|
|
||||||
```
|
|
||||||
Activate server
|
|
||||||
```cmd
|
|
||||||
slmgr /ato
|
|
||||||
```
|
|
||||||
|
|
||||||
# DEFAULT SETTINGS 🗃️
|
|
||||||
| Parameter | Value | Description |
|
|
||||||
| --- | --- | --- |
|
|
||||||
| `user` | docker | user name |
|
|
||||||
| `uid` | 1000 | [user identifier](https://en.wikipedia.org/wiki/User_identifier) |
|
|
||||||
| `gid` | 1000 | [group identifier](https://en.wikipedia.org/wiki/Group_identifier) |
|
|
||||||
| `home` | /kms | home directory of user docker |
|
|
||||||
| `database` | /kms/var/kms.db | SQlite database holding all client data |
|
|
||||||
|
|
||||||
# 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_LOCALE` | see Microsoft LICD specification | 1033 (en-US) |
|
|
||||||
| `KMS_CLIENTCOUNT` | client count > 25 | 26 |
|
|
||||||
| `KMS_ACTIVATIONINTERVAL` | Retry unsuccessful after N minutes | 120 (2 hours) |
|
|
||||||
| `KMS_RENEWALINTERVAL` | re-activation after N minutes | 259200 (180 days) |
|
|
||||||
| `KMS_LOGLEVEL` | CRITICAL, ERROR, WARNING, INFO, DEBUG, MININFO | INFO |
|
|
||||||
|
|
||||||
# SOURCE 💾
|
|
||||||
* [11notes/kms](https://github.com/11notes/docker-kms)
|
|
||||||
|
|
||||||
# PARENT IMAGE 🏛️
|
|
||||||
* [11notes/alpine:stable](https://hub.docker.com/r/11notes/alpine)
|
|
||||||
|
|
||||||
# BUILT WITH 🧰
|
|
||||||
* [py-kms](https://github.com/Py-KMS-Organization/py-kms)
|
|
||||||
* [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
|
|
||||||
* Do not expose this image to WAN! You will get notified from Microsoft via your ISP to terminate the service if you do so
|
|
||||||
* [Microsoft LICD](https://learn.microsoft.com/en-us/openspecs/office_standards/ms-oe376/6c085406-a698-4e12-9d4d-c3b0ee3dbc4a)
|
|
||||||
* Use [11notes/kms-gui](https://github.com/11notes/docker-kms-gui) if you want to see the clients you activated in a nice GUI
|
|
||||||
|
|
||||||
# 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/releases) for breaking changes. If you have any problems with using this image simply raise an [issue](https://github.com/11notes/docker-kms/issues), thanks. If you have a question or inputs please create a new [discussion](https://github.com/11notes/docker-kms/discussions) instead of an issue. You can find all my other repositories on [github](https://github.com/11notes?tab=repositories).
|
|
||||||
@@ -1,2 +1,4 @@
|
|||||||
### 📣 Breaking
|
### 🪄 Features
|
||||||
* Removed KMS_IP and KMS_PORT since this is done by the container networking anyway
|
* add healthcheck directly to build (no script)
|
||||||
|
* add Office activation screenshot
|
||||||
|
* add custom 11notes/action-sarif-to-markdown@v1.1.0 for sarif to markdown (future use) to workflow
|
||||||
@@ -20,6 +20,8 @@
|
|||||||
ARG APP_NAME
|
ARG APP_NAME
|
||||||
ARG APP_VERSION
|
ARG APP_VERSION
|
||||||
ARG APP_ROOT
|
ARG APP_ROOT
|
||||||
|
ARG APP_UID
|
||||||
|
ARG APP_GID
|
||||||
|
|
||||||
# :: environment
|
# :: environment
|
||||||
ENV APP_IMAGE=${APP_IMAGE}
|
ENV APP_IMAGE=${APP_IMAGE}
|
||||||
@@ -37,8 +39,9 @@
|
|||||||
COPY --from=util /usr/local/bin/ /usr/local/bin
|
COPY --from=util /usr/local/bin/ /usr/local/bin
|
||||||
COPY --from=build /git/py-kms/py-kms/ /opt/py-kms
|
COPY --from=build /git/py-kms/py-kms/ /opt/py-kms
|
||||||
|
|
||||||
# :: Run
|
# :: Run
|
||||||
USER root
|
USER root
|
||||||
|
RUN eleven printenv;
|
||||||
|
|
||||||
# :: install application
|
# :: install application
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
@@ -61,11 +64,15 @@
|
|||||||
${APP_ROOT} \
|
${APP_ROOT} \
|
||||||
/opt/py-kms;
|
/opt/py-kms;
|
||||||
|
|
||||||
|
# :: support unraid
|
||||||
|
RUN set -ex; \
|
||||||
|
eleven unraid
|
||||||
|
|
||||||
# :: Volumes
|
# :: Volumes
|
||||||
VOLUME ["${APP_ROOT}/var"]
|
VOLUME ["${APP_ROOT}/var"]
|
||||||
|
|
||||||
# :: Monitor
|
# :: Monitor
|
||||||
HEALTHCHECK --interval=5s --timeout=2s CMD /usr/local/bin/healthcheck.sh || exit 1
|
HEALTHCHECK --interval=5s --timeout=2s CMD netstat -an | grep -q 1688 || exit 1
|
||||||
|
|
||||||
# :: Start
|
# :: Start
|
||||||
USER docker
|
USER docker
|
||||||
BIN
img/GUI.png
BIN
img/GUI.png
Binary file not shown.
|
Before Width: | Height: | Size: 22 KiB |
BIN
img/Office.png
Normal file
BIN
img/Office.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
BIN
img/Windows11ENTLTSC.png
Normal file
BIN
img/Windows11ENTLTSC.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 62 KiB |
BIN
img/WindowsSRV2025.png
Normal file
BIN
img/WindowsSRV2025.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 49 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 39 KiB |
BIN
img/webGUICustomIcon.png
Normal file
BIN
img/webGUICustomIcon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 38 KiB |
71
project.md
Normal file
71
project.md
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
${{ content_synopsis }} This image will run a KMS server you can use to activate any version of Windows and Office, forever.
|
||||||
|
|
||||||
|
Works with:
|
||||||
|
- Windows Vista
|
||||||
|
- Windows 7
|
||||||
|
- Windows 8
|
||||||
|
- Windows 8.1
|
||||||
|
- Windows 10
|
||||||
|
- Windows 11
|
||||||
|
- Windows Server 2008
|
||||||
|
- Windows Server 2008 R2
|
||||||
|
- Windows Server 2012
|
||||||
|
- Windows Server 2012 R2
|
||||||
|
- Windows Server 2016
|
||||||
|
- Windows Server 2019
|
||||||
|
- Windows Server 2022
|
||||||
|
- Windows Server 2025
|
||||||
|
- Microsoft Office 2010 ( Volume License )
|
||||||
|
- Microsoft Office 2013 ( Volume License )
|
||||||
|
- Microsoft Office 2016 ( Volume License )
|
||||||
|
- Microsoft Office 2019 ( Volume License )
|
||||||
|
- Microsoft Office 2021 ( Volume License )
|
||||||
|
- Microsoft Office 2024 ( Volume License )
|
||||||
|
|
||||||
|
${{ title_volumes }}
|
||||||
|
* **${{ json_root }}/var** - Directory of the activation database
|
||||||
|
|
||||||
|
${{ content_compose }}
|
||||||
|
|
||||||
|
# EXAMPLE
|
||||||
|
## Windows Server 2025 Datacenter. List of [GVLK](https://learn.microsoft.com/en-us/windows-server/get-started/kms-client-activation-keys)
|
||||||
|
```cmd
|
||||||
|
slmgr /ipk D764K-2NDRG-47T6Q-P8T8W-YP6DF
|
||||||
|
```
|
||||||
|
Add your KMS server information to server via registry
|
||||||
|
```powershell
|
||||||
|
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform" -Name "KeyManagementServiceName" -Value "KMS_IP"
|
||||||
|
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform" -Name "KeyManagementServicePort" -Value "KMS_PORT"
|
||||||
|
|
||||||
|
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform" -Name "KeyManagementServiceName" -Value "KMS_IP"
|
||||||
|
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform" -Name "KeyManagementServicePort" -Value "KMS_PORT"
|
||||||
|
```
|
||||||
|
Activate server
|
||||||
|
```cmd
|
||||||
|
slmgr /ato
|
||||||
|
```
|
||||||
|
|
||||||
|
${{ content_defaults }}
|
||||||
|
| `database` | /kms/var/kms.db | SQlite database holding all client data |
|
||||||
|
|
||||||
|
${{ content_environment }}
|
||||||
|
| `KMS_LOCALE` | see Microsoft LICD specification | 1033 (en-US) |
|
||||||
|
| `KMS_CLIENTCOUNT` | client count > 25 | 26 |
|
||||||
|
| `KMS_ACTIVATIONINTERVAL` | Retry unsuccessful after N minutes | 120 (2 hours) |
|
||||||
|
| `KMS_RENEWALINTERVAL` | re-activation after N minutes | 259200 (180 days) |
|
||||||
|
| `KMS_LOGLEVEL` | CRITICAL, ERROR, WARNING, INFO, DEBUG, MININFO | INFO |
|
||||||
|
|
||||||
|
${{ content_source }}
|
||||||
|
|
||||||
|
${{ content_parent }}
|
||||||
|
|
||||||
|
${{ content_built }}
|
||||||
|
|
||||||
|
${{ content_tips }}
|
||||||
|
* Do not expose this image to WAN! You will get notified from Microsoft via your ISP to terminate the service if you do so
|
||||||
|
* [Microsoft LICD](https://learn.microsoft.com/en-us/openspecs/office_standards/ms-oe376/6c085406-a698-4e12-9d4d-c3b0ee3dbc4a)
|
||||||
|
* Use [11notes/kms-gui](https://github.com/11notes/docker-kms-gui) if you want to see the clients you activated in a nice web GUI
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
#!/bin/ash
|
|
||||||
netstat -an | grep -q ${KMS_PORT}
|
|
||||||
Reference in New Issue
Block a user