OpenWrt ARMv7 with LuCI Origin , adaptation for Linux ARMv7 device .
533
Original project: https://github.com/openwrt/openwrt
This project: https://github.com/upleung/openwrt-armv7
macvlan networkExecute the following command in the Armbian host terminal to bridge OpenWrt to your physical network interface (assuming your host interface is eth0 and the main router's subnet is 192.168.1.x):
docker network create -d macvlan \
--subnet=192.168.1.0/24 \
--gateway=192.168.1.1 \
-o parent=eth0 openwrt_macvlan
docker run -d \
--name openwrt \
--restart always \
--network openwrt_macvlan \
--privileged \
-v /lib/modules:/lib/modules:ro \
-v /etc/localtime:/etc/localtime:ro \
-v openwrt_overlay:/overlay \
mcgtekwrt/openwrt-armv7:latest
version: '3.8'
services:
openwrt:
image: mcgtekwrt/openwrt-armv7:latest
container_name: openwrt
restart: always
privileged: true
networks:
- openwrt_macvlan
volumes:
- openwrt_overlay:/overlay
- /lib/modules:/lib/modules:ro
- /etc/localtime:/etc/localtime:ro
entrypoint: ["/sbin/init"]
networks:
openwrt_macvlan:
external: true
volumes:
openwrt_overlay:
Content type
Image
Digest
sha256:740eb149c…
Size
6.4 MB
Last updated
about 2 months ago
docker pull mcgtekwrt/openwrt-armv7