Sign inSign up

gouchicao/lede

By gouchicao

•Updated over 6 years ago

Image
0

91

gouchicao/lede repository overview

⁠LEDE Docker Images

The download source is from: https://github.com/coolsnowwolf/lede⁠, x86 is compiled through configuration, with SSR Plus+, and supports SS/SSR/V2RAY/TROJAN.

⁠Base Image Tags

Images built after May 31 2020 are based on Ubuntu 18.04.

  • x86 This image has 26G, and the dependent software packages and compiled binaries are in it. It can be used directly for x86, or it can be recompiled through simple configuration.

  • x86-bin This image contains only x86 binaries generated by compilation.

⁠Compile your own LEDE system.

  • Compile:
docker run -it --name=lede gouchicao/lede:x86
git pull
./scripts/feeds update -a && ./scripts/feeds install -a
make defconfig
make -j$(($(nproc) + 1)) download
make -j$(($(nproc) + 1)) V=s
  • Reconfiguration:
rm -rf ./tmp && rm -rf .config
make menuconfig
make -j$(($(nproc) + 1)) V=s
  • Output path after compilation: /lede/bin/targets

Tag summary

Content type

Image

Digest

Size

260.9 MB

Last updated

over 6 years ago

docker pull gouchicao/lede:x86-bin