Sign inSign up

mcgtekwrt/openwrt-armv7

By mcgtekwrt

•Updated 26 days ago

OpenWrt ARMv7 with LuCI Origin , adaptation for Linux ARMv7 device .

Image
0

533

mcgtekwrt/openwrt-armv7 repository overview

⁠Stock OpenWrt firmware; only the LuCI WebUI has been added, with no other modifications.


Original project: https://github.com/openwrt/openwrt⁠

This project: https://github.com/upleung/openwrt-armv7⁠


⁠Create a macvlan network

Execute 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

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

⁠Docker-compose

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:

Tag summary

Content type

Image

Digest

sha256:740eb149c…

Size

6.4 MB

Last updated

about 2 months ago

docker pull mcgtekwrt/openwrt-armv7