diff --git a/.github/workflows/docker-multi-arch.yml b/.github/workflows/docker-multi-arch.yml index af48618..2e6835c 100644 --- a/.github/workflows/docker-multi-arch.yml +++ b/.github/workflows/docker-multi-arch.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - base: ["bookworm"] + base: ["stable"] steps: - name: Checkout @@ -38,18 +38,23 @@ jobs: declare -A base_image_from_matrix base_image_from_matrix[sid]=debian:sid-slim base_image_from_matrix[trixie]=debian:trixie-slim + base_image_from_matrix[unstable]=debian:unstable-slim + base_image_from_matrix[stable]=debian:stable-slim base_image_from_matrix[bookworm]=debian:bookworm-slim base_image_from_matrix[bullseye]=debian:bullseye-slim declare -A app_version_table - app_version_table[sid]=1.3.2 - app_version_table[trixie]=1.3.2 + app_version_table[sid]=1.3.3 + app_version_table[trixie]=1.3.3 + app_version_table[unstable]=1.3.3 + app_version_table[stable]=1.3.0 app_version_table[bookworm]=1.3.0 app_version_table[bullseye]=1.3.0 declare -A special_tags special_tags[sid]="${image_name}:unstable" special_tags[trixie]="${image_name}:nextstable" + special_tags[stable]="${image_name}:stable,${image_name}:latest" special_tags[bookworm]="${image_name}:stable,${image_name}:latest" special_tags[bullseye]="${image_name}:oldstable" diff --git a/README.md b/README.md index afc983e..b2b8d7d 100644 --- a/README.md +++ b/README.md @@ -133,6 +133,7 @@ Just be careful to use the tag you have built. Date|Major Changes :---|:--- +2023-09-13|Switch to debian stable, see [#8](https://github.com/GioF71/minidlna-docker/issues/8) 2023-09-13|Add support to notify interval, see [#6](https://github.com/GioF71/minidlna-docker/issues/6) 2023-07-24|Switch to bookworm, see [#2](https://github.com/GioF71/minidlna-docker/issues/2) 2022-10-23|Initial release diff --git a/build.sh b/build.sh index 44427f7..ed9f479 100755 --- a/build.sh +++ b/build.sh @@ -13,9 +13,11 @@ base_images[trixie]=debian:trixie-slim base_images[bookworm]=debian:bookworm-slim base_images[bullseye]=debian:bullseye-slim base_images[buster]=debian:buster-slim +base_images[lunar]=ubuntu:lunar +base_images[kinetic]=ubuntu:kinetic base_images[jammy]=ubuntu:jammy -DEFAULT_BASE_IMAGE=bookworm +DEFAULT_BASE_IMAGE=stable DEFAULT_TAG=local DEFAULT_USE_PROXY=N