Sign inSign up

ophub/armbian-resolute

By ophub

Updated 3 days ago

Image
1

5.7K

ophub/armbian-resolute repository overview

Armbian Docker Image Guide / 镜像说明

Armbian Docker images are available in arm64 and amd64 versions. For usage instructions, build and release source code, see:

Armbian Docker 镜像,分 arm64amd64 版本。 关于使用方法,制作和发布源码详见:

https://github.com/ophub/amlogic-s9xxx-armbian

Default Login Information / 默认信息

  • Username: root
  • Password: 1234

Check if a macvlan network exists / 检查 macvlan 网络

docker network ls

Create a macvlan network / 创建 macvlan 网络

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

Run the Armbian Docker image / 运行 Docker 镜像

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 平台, 有 arm64amd64 之分,根据设备选择合适的镜像。例如 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

View Docker startup logs / 查看日志

docker logs -f armbian-resolute

Access the container from the host / 从宿主机进入容器

docker exec -it armbian-resolute bash

Exit the container / 退出容器

exit

Remove the container / 删除容器

docker rm -f armbian-resolute

Tag summary

Content type

Image

Digest

sha256:bf3a0b931

Size

352.5 MB

Last updated

3 days ago

docker pull ophub/armbian-resolute