Skip to content

Commit

Permalink
Bump to OpenWrt 24.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbrechtL committed Feb 6, 2025
1 parent b2cc2a2 commit 294085f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/openwrt-stable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- master

env:
OPENWRT_VERSION: 23.05.5
OPENWRT_VERSION: 24.10.0

jobs:
build:
Expand All @@ -27,7 +27,7 @@ jobs:
uses: pierotofy/set-swap-space@master
with:
swap-size-gb: 10

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
FROM alpine:latest

ARG NOVNC_VERSION="1.5.0"
ARG OPENWRT_VERSION="23.05.5"
ARG OPENWRT_VERSION="24.10.0"
ARG TARGETPLATFORM
ARG OPENWRT_ROOTFS_IMG
ARG OPENWRT_KERNEL
Expand Down Expand Up @@ -102,7 +102,7 @@ RUN echo "Building for platform '$TARGETPLATFORM'" \
VERSION_BUILDINFO=`cat version.buildinfo`; \
OPENWRT_IMAGE="https://downloads.openwrt.org/releases/24.10-SNAPSHOT/targets/armsr/armv8/openwrt-24.10-snapshot-${VERSION_BUILDINFO}-armsr-armv8-generic-squashfs-combined-efi.img.gz"; \
else \
OPENWRT_IMAGE="https://archive.openwrt.org/releases/${OPENWRT_VERSION}/targets/armsr/armv8/openwrt-${OPENWRT_VERSION}-armsr-armv8-generic-squashfs-combined.img.gz"; \
OPENWRT_IMAGE="https://archive.openwrt.org/releases/${OPENWRT_VERSION}/targets/armsr/armv8/openwrt-${OPENWRT_VERSION}-armsr-armv8-generic-squashfs-combined-efi.img.gz"; \
fi; \
else \
echo "Error: CPU architecture $TARGETPLATFORM is not supported"; \
Expand Down
5 changes: 2 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@ services:
openwrt:
container_name: openwrt
image: albrechtloh/openwrt-docker:latest # for latest OpenWrt stable version
#image: albrechtloh/openwrt-docker:openwrt-2410-snapshot # for latest OpenWrt 24.10 snapshot version
#image: albrechtloh/openwrt-docker:openwrt-master-snapshot # for latest OpenWrt master version
#image: openwrt-docker
#mage: openwrt-docker
build:
context: .
dockerfile: Dockerfile
args:
OPENWRT_VERSION: "23.05.4"
OPENWRT_VERSION: "24.10.0"
#OPENWRT_VERSION: "master"

environment:
Expand Down
7 changes: 3 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ Adapt [`docker-compose.yml`](https://github.com/AlbrechtL/openwrt-docker/blob/ma
Images are available at https://hub.docker.com/r/albrechtloh/openwrt-docker.

Currently, three images are available. For all of these images automated tests are applied.
* `albrechtloh/openwrt-docker:latest` Latest OpenWrt stable version e.g. 24.05.5
* `albrechtloh/openwrt-docker:openwrt-2410-snapshot` Latest OpenWrt 24.10 snapshot version
* `albrechtloh/openwrt-docker:latest` Latest OpenWrt stable version e.g. 24.10.0
* `albrechtloh/openwrt-docker:openwrt-master-snapshot` Latest OpenWrt master version

## Support
Expand Down Expand Up @@ -85,9 +84,9 @@ Clone this repo and run
docker build -t openwrt-docker .
```

If you like to specify a specific OpenWrt version, you can do
If you like to specify a specific OpenWrt version, you can do (minimum version 24.10.0)
```bash
docker build -t openwrt-docker . --build-arg OPENWRT_VERSION="23.05.4"
docker build -t openwrt-docker . --build-arg OPENWRT_VERSION="24.10.0"
```
or for the latest development master. The `--no-cache` option is necessary to get always the newest version.
```bash
Expand Down

0 comments on commit 294085f

Please sign in to comment.