openwrt-x86-64 icon indicating copy to clipboard operation
openwrt-x86-64 copied to clipboard

openwrt-x86-64 docker image

Results 6 openwrt-x86-64 issues
Sort by recently updated
recently updated
newest added

[lede github](https://github.com/coolsnowwolf/lede) 我想用docker跑这个大佬的openwrt,请问大佬,该如何操作,能否出一个详细教程

大神,我直接下载你编译的固件使用,发现没有dhcpV6客户端啊

Ubuntu/Debian系统: 编辑`/etc/network/interfaces`增加以下内容 ``` # Primary interface auto eth0 iface eth0 inet dhcp up ip link set dev eth0 promisc on # Macvlan interfaces auto vir1 iface vir1 inet dhcp pre-up...

``` #Dockerfile FROM crazygit/openwrt-x86-64 EXPOSE 80 USER root CMD /sbin/init ``` ``` #docker-compose.yml version: "2" services: lede: build: ./build ports: - "8080:80" restart: unless-stopped ``` ``` docker-compose logs Attaching to...

你好, 我是用QNAP 的DOCKER. 使用的網段為 10.10.1.0/24 (gateway : 10.10.1.1) 已跟大佬指引創建了macnet (網卡是eth0) `docker network create -d macvlan --subnet=10.10.1.0/24 --gateway=10.10.1.1 -o parent=eth0 macnet` 及成功啟動Docker Openwrt 和 設定了IP 及DNS等 > config interface 'lan' >...