Armbian Docker images is arm64 versions.
For usage instructions, build and release source code, see:
Armbian Docker 镜像 arm64 版本。 关于使用方法,制作和发布源码详见:
https://github.com/ophub/amlogic-s9xxx-armbian
root1234docker network ls
Modify the subnet, gateway, and network interface according to your actual LAN configuration:
网络,网段、网关和网卡名称根据自己的实际网络修改:
docker network create -d macvlan \
--subnet=10.1.1.0/24 \
--gateway=10.1.1.1 \
-o parent=eth0 \
macvlan
Use an IP address in the code that is not already in use on the local network.
The branch tag latest at the end refers to the arm64 platform. You can use ophub/armbian-bullseye:arm64 or ophub/armbian-bullseye:latest.
代码里的 IP 使用局域网未被占用的 IP 地址。
代码结尾处的分支标签 latest 为 arm64 平台。可以使用 ophub/armbian-bullseye:arm64 或者 ophub/armbian-bullseye:latest
docker run -itd --name=armbian-bullseye \
--privileged \
--network macvlan \
--ip 10.1.1.15 \
--hostname=armbian-bullseye \
-e TZ=Asia/Shanghai \
--restart unless-stopped \
ophub/armbian-bullseye:latest
docker logs -f armbian-bullseye
docker exec -it armbian-bullseye bash
exit
docker rm -f armbian-bullseye
Content type
Image
Digest
sha256:dc32ccfd3…
Size
313 MB
Last updated
11 months ago
docker pull ophub/armbian-bullseye