Compare commits
76 Commits
build-basi
...
tmp-digest
| Author | SHA1 | Date | |
|---|---|---|---|
| 61b2175acd | |||
| 7034337173 | |||
| 46346abd99 | |||
| a4d20841fa | |||
| fd818066f3 | |||
| dbed11e8c5 | |||
| ad6ed484b4 | |||
| 141417a1ee | |||
| 5e1d0ab4f5 | |||
| 00d9de9e77 | |||
| 6dad214eba | |||
| 2e306d19cf | |||
| 1575fc68cc | |||
| d20ab816ad | |||
| a3db26ebb8 | |||
| 7bb0491bfe | |||
| e5cc29a8a7 | |||
| 072125e739 | |||
| 43e93e1db2 | |||
| 9beb31d1c5 | |||
| e0909f7e3a | |||
| 33fcfc5f27 | |||
| 8945fc1cf7 | |||
| d9c86c0ed0 | |||
| 15cb8aad66 | |||
| 4e892e45dc | |||
| 6ec17e85a6 | |||
| db0c2aa586 | |||
| 8885dc4a67 | |||
| b4406eca3f | |||
| 979aee4c78 | |||
| 1205d40566 | |||
| 9fb775a387 | |||
| 0a440a843c | |||
| 6c9beb4d2c | |||
| f77a38b1d5 | |||
| b46d5944bc | |||
| 05da49143e | |||
| 0f2c72f4cf | |||
| 4e89e985ef | |||
| cb59987179 | |||
| e38b927a24 | |||
| 13961e87dc | |||
| f8cac086b8 | |||
| bc0e91b8eb | |||
| c643202967 | |||
| 0f5bbe21d2 | |||
| dcb7791b65 | |||
| 52e4170101 | |||
| 4fa6f13c10 | |||
| d2e6d3a540 | |||
| eccd63cd79 | |||
| 53f99aada2 | |||
| d2cd22ffeb | |||
| 1ae3caef7b | |||
| fd4f59a58a | |||
| bba89bd25a | |||
| ff580dae53 | |||
| 653e894bb9 | |||
| b32bb55cdf | |||
| 99e56a9111 | |||
| bf44840484 | |||
| 1f919d1297 | |||
| eaf447bbe3 | |||
| 53d99e6999 | |||
| 7d34557498 | |||
| 0ceeb5698c | |||
| bb57c4edf3 | |||
| 8d65f8d8cb | |||
| e5e9d49804 | |||
| d48fd8737b | |||
| feb4aaac03 | |||
| 764077ab0d | |||
| 5fcb424e06 | |||
| a7efd7ea6f | |||
| c6d8bdd1a6 |
@@ -1 +1 @@
|
||||
|
||||
alpine@sha256:5b10f432ef3da1b8d4c7eb6c487f2f5a8f096bc91145e68878dd4a5019afde11
|
||||
|
||||
@@ -1 +1 @@
|
||||
|
||||
gitea.fithwum.tech/fithwum/debian-base@sha256:d98e6d21bef2a504dc40a402dc44f5a4a336cd20d94f36ab6dc552c7b785f20b
|
||||
|
||||
@@ -1 +1 @@
|
||||
|
||||
gitea.fithwum.tech/fithwum/debian-base@sha256:d98e6d21bef2a504dc40a402dc44f5a4a336cd20d94f36ab6dc552c7b785f20b
|
||||
|
||||
@@ -157,14 +157,11 @@ jobs:
|
||||
|
||||
update-base-digest-cache:
|
||||
needs:
|
||||
- check-for-changes
|
||||
- build-alpine
|
||||
- build-debian
|
||||
- build-basic
|
||||
runs-on: vm-docker-build2
|
||||
if: |
|
||||
needs.build-alpine.outputs.built == 'true' ||
|
||||
needs.build-debian.outputs.built == 'true' ||
|
||||
needs.build-basic.outputs.built == 'true'
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
@@ -187,15 +184,33 @@ jobs:
|
||||
echo "${{ needs.check-for-changes.outputs.basic_digest }}" > .cache/basic-base.digest
|
||||
|
||||
if git status --porcelain | grep .; then
|
||||
# Create a temporary branch
|
||||
TEMP_BRANCH="tmp-digest-$(date -u +%s)"
|
||||
git checkout -b "$TEMP_BRANCH"
|
||||
|
||||
git add .cache/*-base.digest
|
||||
git commit -m "Update base image digests ($(date -u +'%Y-%m-%dT%H:%M:%SZ'))"
|
||||
git push
|
||||
|
||||
# Push temporary branch
|
||||
git push origin "$TEMP_BRANCH"
|
||||
|
||||
# Merge temp branch into main safely
|
||||
git checkout main
|
||||
git fetch origin main
|
||||
git merge --no-ff --no-edit "$TEMP_BRANCH"
|
||||
|
||||
# Push main branch
|
||||
git push origin main
|
||||
|
||||
# Delete temporary branch remotely
|
||||
git push origin --delete "$TEMP_BRANCH" || true
|
||||
else
|
||||
echo "[INFO] No digest updates to commit"
|
||||
echo "[INFO] No digest updates to commit."
|
||||
fi
|
||||
|
||||
generate-build-info:
|
||||
needs:
|
||||
- update-base-digest-cache
|
||||
- build-alpine
|
||||
- build-debian
|
||||
- build-basic
|
||||
@@ -302,32 +317,43 @@ jobs:
|
||||
run: |
|
||||
git config user.name "${{ secrets.GIT_USERNAME }}"
|
||||
git config user.email "${{ secrets.GIT_EMAIL }}"
|
||||
|
||||
if git status --porcelain | grep .; then
|
||||
# Create a temporary branch
|
||||
TEMP_BRANCH="tmp-buildinfo-$(date -u +%s)"
|
||||
git checkout -b "$TEMP_BRANCH"
|
||||
|
||||
git add */build-info.json
|
||||
git commit -m "Update build-info on $(date -u +'%Y-%m-%dT%H:%M:%SZ')"
|
||||
git push
|
||||
|
||||
for version in alpine debian basic; do
|
||||
TAG="build-$version"
|
||||
git tag -d "$TAG" 2>/dev/null || true
|
||||
git tag "$TAG"
|
||||
git push origin "$TAG" --force
|
||||
done
|
||||
# Push temp branch
|
||||
git push origin "$TEMP_BRANCH"
|
||||
|
||||
# Switch back to main
|
||||
git checkout main
|
||||
git fetch origin main
|
||||
|
||||
# Merge temp branch using --allow-unrelated-histories (safe in CI)
|
||||
git merge --no-ff --no-edit "$TEMP_BRANCH" || true
|
||||
|
||||
# Force push main to remote to ensure update
|
||||
git push origin main --force
|
||||
|
||||
# Delete temporary branch locally and remotely
|
||||
git branch -D "$TEMP_BRANCH"
|
||||
git push origin --delete "$TEMP_BRANCH" || true
|
||||
else
|
||||
echo "[INFO] No build-info changes to commit."
|
||||
fi
|
||||
|
||||
ls -l basic/build-info.json || echo "❌ build-info not written"
|
||||
cat basic/build-info.json || echo "❌ empty build-info"
|
||||
|
||||
generate-changelogs:
|
||||
needs:
|
||||
- check-for-changes
|
||||
- generate-build-info
|
||||
if: |
|
||||
needs.build-alpine.outputs.built == 'true' ||
|
||||
needs.build-debian.outputs.built == 'true' ||
|
||||
needs.build-basic.outputs.built == 'true'
|
||||
needs.check-for-changes.outputs.should_build_alpine == 'true' ||
|
||||
needs.check-for-changes.outputs.should_build_debian == 'true' ||
|
||||
needs.check-for-changes.outputs.should_build_basic == 'true'
|
||||
runs-on: vm-docker-build2
|
||||
steps:
|
||||
- name: Checkout source
|
||||
@@ -383,10 +409,28 @@ jobs:
|
||||
run: |
|
||||
git config user.name "${{ secrets.GIT_USERNAME }}"
|
||||
git config user.email "${{ secrets.GIT_EMAIL }}"
|
||||
|
||||
if git status --porcelain | grep .; then
|
||||
# Create a temporary branch
|
||||
TEMP_BRANCH="tmp-changelog-$(date -u +%s)"
|
||||
git checkout -b "$TEMP_BRANCH"
|
||||
|
||||
git add */CHANGES.md
|
||||
git commit -m "Update changelogs on $(date -u +'%Y-%m-%dT%H:%M:%SZ')" --no-verify
|
||||
git push
|
||||
|
||||
# Push temporary branch
|
||||
git push origin "$TEMP_BRANCH"
|
||||
|
||||
# Merge temporary branch into main safely
|
||||
git checkout main
|
||||
git fetch origin main
|
||||
git merge --no-ff --no-edit "$TEMP_BRANCH"
|
||||
|
||||
# Push main branch
|
||||
git push origin main
|
||||
|
||||
# Delete temporary branch remotely
|
||||
git push origin --delete "$TEMP_BRANCH" || true
|
||||
else
|
||||
echo "[INFO] No changelog changes to commit."
|
||||
fi
|
||||
38
README.md
38
README.md
@@ -1,2 +1,36 @@
|
||||
# teamspeak-server
|
||||
|
||||
Teamspeak Image Builder
|
||||
|
||||
This repository automates the build and push of Docker images for a Teamspeak server using Gitea Actions. The process includes:
|
||||
|
||||
Base Image Updates: When changes are detected in base images (Alpine, Debian), the workflow checks if these images have been updated.
|
||||
Build Process: If updates are detected, it builds new Docker images for each variant (Alpine, Debian, Basic).
|
||||
Metadata Management: Generates build-info.json files containing detailed information about each image, including size, digest, and base image digest.
|
||||
Version Control: Commits and pushes the generated build-info.json and changelogs to the repository using temporary branches.
|
||||
|
||||
Workflow Components
|
||||
1. Base Image Updates
|
||||
|
||||
The workflow runs on a schedule or when changes are detected in the base images (Alpine, Debian).
|
||||
It pulls the latest versions of these base images.
|
||||
If the tags have changed, it proceeds with the build process.
|
||||
|
||||
2. Build Process
|
||||
|
||||
For each variant (Alpine, Debian, Basic), the workflow checks if there are any changes to rebuild the image.
|
||||
It builds new Docker images using the updated base images and pushes them to a container registry.
|
||||
|
||||
3. Metadata Management
|
||||
|
||||
The build-info.json file is generated for each built image, containing essential metadata such as:
|
||||
Version
|
||||
Commit hash
|
||||
Build time
|
||||
Image tag
|
||||
Digest
|
||||
Image size
|
||||
Base digest
|
||||
|
||||
4. Version Control
|
||||
|
||||
If changes are detected in build-info.json, the workflow commits these changes to a temporary branch and merges them back into the main branch.
|
||||
Similarly, if there are updates to changelogs (CHANGES.md), they are committed and pushed.
|
||||
@@ -425,3 +425,158 @@
|
||||
- fdbdjlkhjkljkl (fithwum)
|
||||
- hfdgrsthsrt (fithwum)
|
||||
- test (fithwum)
|
||||
|
||||
## 2026-01-11T14:58:50Z
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:50:48Z) (fithwum)
|
||||
- test (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:46:49Z) (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:44:26Z) (fithwum)
|
||||
## 2026-01-18T13:01:29Z
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:50:48Z) (fithwum)
|
||||
- test (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:46:49Z) (fithwum)
|
||||
- test (fithwum)
|
||||
## 2026-01-25T13:02:02Z
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:50:48Z) (fithwum)
|
||||
- test (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:46:49Z) (fithwum)
|
||||
## 2026-02-01T13:01:45Z
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:50:48Z) (fithwum)
|
||||
- test (fithwum)
|
||||
## 2026-02-08T13:01:09Z
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:50:48Z) (fithwum)
|
||||
## 2026-02-15T13:01:38Z
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
## 2026-02-22T13:01:07Z
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
## 2026-03-01T13:01:48Z
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
## 2026-03-08T13:01:23Z
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
## 2026-03-15T13:01:42Z
|
||||
- Update build-info on 2026-03-15T13:01:33Z (fithwum)
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
## 2026-03-22T13:01:44Z
|
||||
- Update build-info on 2026-03-22T13:01:35Z (fithwum)
|
||||
- Update build-info on 2026-03-15T13:01:33Z (fithwum)
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
## 2026-03-29T13:02:02Z
|
||||
- Update build-info on 2026-03-29T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-03-22T13:01:35Z (fithwum)
|
||||
- Update build-info on 2026-03-15T13:01:33Z (fithwum)
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
## 2026-04-05T13:01:10Z
|
||||
- Update build-info on 2026-04-05T13:01:02Z (fithwum)
|
||||
- Update build-info on 2026-03-29T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-03-22T13:01:35Z (fithwum)
|
||||
- Update build-info on 2026-03-15T13:01:33Z (fithwum)
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
## 2026-04-12T13:01:28Z
|
||||
- Update build-info on 2026-04-12T13:01:19Z (fithwum)
|
||||
- Update build-info on 2026-04-05T13:01:02Z (fithwum)
|
||||
- Update build-info on 2026-03-29T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-03-22T13:01:35Z (fithwum)
|
||||
- Update build-info on 2026-03-15T13:01:33Z (fithwum)
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"version": "alpine",
|
||||
"commit": "c8da4ee1ede648b79134e69fc6c99c05c7309e88",
|
||||
"build_time": "2026-01-11T14:28:24Z",
|
||||
"commit": "dbed11e8c5d789941766149e41b536a713270b39",
|
||||
"build_time": "2026-04-12T13:01:19Z",
|
||||
"image_tag": "gitea.fithwum.tech/fithwum/teamspeak-server:alpine",
|
||||
"digest": "gitea.fithwum.tech/fithwum/teamspeak-server@sha256:500a031b8998a8861fe7bd731ed8643f0bfc4ec229c83446a870e72bbf4c8579",
|
||||
"image_size": "26MB",
|
||||
"image_size_bytes": 26399527,
|
||||
"base_digest": ""
|
||||
"digest": "\nunknown",
|
||||
"image_size": "0B",
|
||||
"image_size_bytes": 0,
|
||||
"base_digest": "unknown"
|
||||
}
|
||||
|
||||
155
basic/CHANGES.md
155
basic/CHANGES.md
@@ -370,3 +370,158 @@
|
||||
- fdbdjlkhjkljkl (fithwum)
|
||||
- hfdgrsthsrt (fithwum)
|
||||
- test (fithwum)
|
||||
|
||||
## 2026-01-11T14:58:50Z
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:50:48Z) (fithwum)
|
||||
- test (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:46:49Z) (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:44:26Z) (fithwum)
|
||||
## 2026-01-18T13:01:29Z
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:50:48Z) (fithwum)
|
||||
- test (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:46:49Z) (fithwum)
|
||||
- test (fithwum)
|
||||
## 2026-01-25T13:02:02Z
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:50:48Z) (fithwum)
|
||||
- test (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:46:49Z) (fithwum)
|
||||
## 2026-02-01T13:01:46Z
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:50:48Z) (fithwum)
|
||||
- test (fithwum)
|
||||
## 2026-02-08T13:01:09Z
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:50:48Z) (fithwum)
|
||||
## 2026-02-15T13:01:38Z
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
## 2026-02-22T13:01:07Z
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
## 2026-03-01T13:01:49Z
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
## 2026-03-08T13:01:23Z
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
## 2026-03-15T13:01:43Z
|
||||
- Update build-info on 2026-03-15T13:01:33Z (fithwum)
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
## 2026-03-22T13:01:44Z
|
||||
- Update build-info on 2026-03-22T13:01:35Z (fithwum)
|
||||
- Update build-info on 2026-03-15T13:01:33Z (fithwum)
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
## 2026-03-29T13:02:02Z
|
||||
- Update build-info on 2026-03-29T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-03-22T13:01:35Z (fithwum)
|
||||
- Update build-info on 2026-03-15T13:01:33Z (fithwum)
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
## 2026-04-05T13:01:10Z
|
||||
- Update build-info on 2026-04-05T13:01:02Z (fithwum)
|
||||
- Update build-info on 2026-03-29T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-03-22T13:01:35Z (fithwum)
|
||||
- Update build-info on 2026-03-15T13:01:33Z (fithwum)
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
## 2026-04-12T13:01:28Z
|
||||
- Update build-info on 2026-04-12T13:01:19Z (fithwum)
|
||||
- Update build-info on 2026-04-05T13:01:02Z (fithwum)
|
||||
- Update build-info on 2026-03-29T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-03-22T13:01:35Z (fithwum)
|
||||
- Update build-info on 2026-03-15T13:01:33Z (fithwum)
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"version": "basic",
|
||||
"commit": "c8da4ee1ede648b79134e69fc6c99c05c7309e88",
|
||||
"build_time": "2026-01-11T14:28:24Z",
|
||||
"commit": "dbed11e8c5d789941766149e41b536a713270b39",
|
||||
"build_time": "2026-04-12T13:01:19Z",
|
||||
"image_tag": "gitea.fithwum.tech/fithwum/teamspeak-server:basic",
|
||||
"digest": "gitea.fithwum.tech/fithwum/teamspeak-server@sha256:221a3f5f2a233a664ae72f1bfd77be1ac45a67844b47315df8084e50b00094cb",
|
||||
"image_size": "405MB",
|
||||
"image_size_bytes": 423930068,
|
||||
"base_digest": ""
|
||||
"digest": "\nunknown",
|
||||
"image_size": "0B",
|
||||
"image_size_bytes": 0,
|
||||
"base_digest": "unknown"
|
||||
}
|
||||
|
||||
155
debian/CHANGES.md
vendored
155
debian/CHANGES.md
vendored
@@ -425,3 +425,158 @@
|
||||
- fdbdjlkhjkljkl (fithwum)
|
||||
- hfdgrsthsrt (fithwum)
|
||||
- test (fithwum)
|
||||
|
||||
## 2026-01-11T14:58:50Z
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:50:48Z) (fithwum)
|
||||
- test (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:46:49Z) (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:44:26Z) (fithwum)
|
||||
## 2026-01-18T13:01:29Z
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:50:48Z) (fithwum)
|
||||
- test (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:46:49Z) (fithwum)
|
||||
- test (fithwum)
|
||||
## 2026-01-25T13:02:02Z
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:50:48Z) (fithwum)
|
||||
- test (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:46:49Z) (fithwum)
|
||||
## 2026-02-01T13:01:45Z
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:50:48Z) (fithwum)
|
||||
- test (fithwum)
|
||||
## 2026-02-08T13:01:09Z
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
- Update base image digests (2026-01-11T14:50:48Z) (fithwum)
|
||||
## 2026-02-15T13:01:38Z
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
- test (fithwum)
|
||||
## 2026-02-22T13:01:07Z
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
- Update build-info on 2026-01-11T14:53:22Z (fithwum)
|
||||
## 2026-03-01T13:01:49Z
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
- changelog (fithwum)
|
||||
## 2026-03-08T13:01:23Z
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
- Update build-info on 2026-01-11T14:58:40Z (fithwum)
|
||||
## 2026-03-15T13:01:42Z
|
||||
- Update build-info on 2026-03-15T13:01:33Z (fithwum)
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-01-18T13:01:20Z (fithwum)
|
||||
## 2026-03-22T13:01:44Z
|
||||
- Update build-info on 2026-03-22T13:01:35Z (fithwum)
|
||||
- Update build-info on 2026-03-15T13:01:33Z (fithwum)
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
- Update build-info on 2026-01-25T13:01:54Z (fithwum)
|
||||
## 2026-03-29T13:02:02Z
|
||||
- Update build-info on 2026-03-29T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-03-22T13:01:35Z (fithwum)
|
||||
- Update build-info on 2026-03-15T13:01:33Z (fithwum)
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
- update readme (fithwum)
|
||||
## 2026-04-05T13:01:10Z
|
||||
- Update build-info on 2026-04-05T13:01:02Z (fithwum)
|
||||
- Update build-info on 2026-03-29T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-03-22T13:01:35Z (fithwum)
|
||||
- Update build-info on 2026-03-15T13:01:33Z (fithwum)
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
- Update build-info on 2026-02-01T13:01:37Z (fithwum)
|
||||
## 2026-04-12T13:01:28Z
|
||||
- Update build-info on 2026-04-12T13:01:19Z (fithwum)
|
||||
- Update build-info on 2026-04-05T13:01:02Z (fithwum)
|
||||
- Update build-info on 2026-03-29T13:01:54Z (fithwum)
|
||||
- Update build-info on 2026-03-22T13:01:35Z (fithwum)
|
||||
- Update build-info on 2026-03-15T13:01:33Z (fithwum)
|
||||
- Update build-info on 2026-03-08T13:01:16Z (fithwum)
|
||||
- Update build-info on 2026-03-01T13:01:40Z (fithwum)
|
||||
- Update build-info on 2026-02-22T13:01:00Z (fithwum)
|
||||
- Update build-info on 2026-02-15T13:01:30Z (fithwum)
|
||||
- Update build-info on 2026-02-08T13:01:01Z (fithwum)
|
||||
10
debian/build-info.json
vendored
10
debian/build-info.json
vendored
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"version": "debian",
|
||||
"commit": "c8da4ee1ede648b79134e69fc6c99c05c7309e88",
|
||||
"build_time": "2026-01-11T14:28:24Z",
|
||||
"commit": "dbed11e8c5d789941766149e41b536a713270b39",
|
||||
"build_time": "2026-04-12T13:01:19Z",
|
||||
"image_tag": "gitea.fithwum.tech/fithwum/teamspeak-server:debian",
|
||||
"digest": "gitea.fithwum.tech/fithwum/teamspeak-server@sha256:093368ccd41510ec937153669423107f7c6760a3d6cbd1dc07ca94de47b3a321",
|
||||
"digest": "gitea.fithwum.tech/fithwum/teamspeak-server@sha256:ab56bb4473b57ebd573feb3d815f89ee9ead30cb3656625ffb9fb27c0972c514",
|
||||
"image_size": "405MB",
|
||||
"image_size_bytes": 423930346,
|
||||
"base_digest": ""
|
||||
"image_size_bytes": 423930624,
|
||||
"base_digest": "unknown"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user