Armbian Docker images are available in arm64 and amd64 versions.
For usage instructions, build and release source code, see:
Armbian Docker 镜像,分 arm64 和 amd64 版本。 关于使用方法,制作和发布源码详见:
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 of the code defaults to the arm64 platform. There are arm64 and amd64 versions, so choose the appropriate platform image according to your environment. For example, ophub/armbian-resolute:arm64 or ophub/armbian-resolute:amd64
代码里的 IP 使用局域网未被占用的 IP 地址。
代码结尾处的分支标签 latest 默认为 arm64 平台, 有 arm64 和 amd64 之分,根据设备选择合适的镜像。例如 ophub/armbian-resolute:arm64 或者 ophub/armbian-resolute:arm64
docker run -itd --name=armbian-resolute \
--privileged \
--network macvlan \
--ip 10.1.1.15 \
--hostname=armbian-resolute \
-e TZ=Asia/Shanghai \
--restart unless-stopped \
ophub/armbian-resolute:arm64
docker logs -f armbian-resolute
docker exec -it armbian-resolute bash
exit
docker rm -f armbian-resolute
Content type
Image
Digest
sha256:bf3a0b931…
Size
352.5 MB
Last updated
3 days ago
docker pull ophub/armbian-resolute