diff --git a/README.md b/README.md index 8567370..f4ca233 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,15 @@ The architectures supported by this image are: | arm64 | ✅ | arm64v8-\ | | armhf| ✅ | arm32v7-\ | +## Version Tags + +This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags. + +| Tag | Available | Description | +| :----: | :----: |--- | +| latest | ✅ | Stable releases with support for compiling Wireguard modules | +| alpine | ✅ | Stable releases based on Alpine *without* support for compiling Wireguard modules | + ## Application Setup During container start, it will first check if the wireguard module is already installed and loaded. Kernels newer than 5.6 generally have the wireguard module built-in (along with some older custom kernels). However, the module may not be enabled. Make sure it is enabled prior to starting the container. @@ -317,6 +326,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **12.10.22:** - Add Alpine branch. * **09.10.22:** - Switch back to iptables-legacy due to issues on some hosts. * **04.10.22:** - Rebase to Jammy. Upgrade to s6v3. * **16.05.22:** - Improve NAT handling in server mode when multiple ethernet devices are present. diff --git a/package_versions.txt b/package_versions.txt index 5656ffb..14df986 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ libuuid12.37.2-4ubuntu3 libxtables121.8.7-1ubuntu5 libxxhash00.8.1-1 libzstd11.4.8+dfsg-3build1 -linux-libc-dev5.15.0-48.54 +linux-libc-dev5.15.0-50.56 locales2.35-0ubuntu3.1 login1:4.8.1-2ubuntu2 logsave1.46.5-2ubuntu1.1 diff --git a/readme-vars.yml b/readme-vars.yml index 675913d..5575142 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -14,10 +14,10 @@ available_architectures: - { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"} # development version -development_versions: false +development_versions: true development_versions_items: - - { tag: "latest", desc: "Stable releases" } - - { tag: "development", desc: "Prereleases from their GitHub" } + - { tag: "latest", desc: "Stable releases with support for compiling Wireguard modules" } + - { tag: "alpine", desc: "Stable releases based on Alpine *without* support for compiling Wireguard modules" } # container parameters common_param_env_vars_enabled: true @@ -121,7 +121,7 @@ app_setup_block: | # changelog changelogs: - - { date: "12.10.22:", desc: "Optimize wg and coredns services." } + - { date: "12.10.22:", desc: "Add Alpine branch. Optimize wg and coredns services." } - { date: "09.10.22:", desc: "Switch back to iptables-legacy due to issues on some hosts." } - { date: "04.10.22:", desc: "Rebase to Jammy. Upgrade to s6v3." } - { date: "16.05.22:", desc: "Improve NAT handling in server mode when multiple ethernet devices are present." }