Skip to content

Commit

Permalink
[Maintenance] Switch to debian stable #8 (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
GioF71 authored Sep 13, 2023
1 parent 928c213 commit 23472aa
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/docker-multi-arch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
base: ["bookworm"]
base: ["stable"]

steps:
- name: Checkout
Expand All @@ -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"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 3 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 23472aa

Please sign in to comment.