Sign inSign up

ophub/armbian-bullseye

By ophub

Updated 11 months ago

Image
0

649

ophub/armbian-bullseye repository overview

Armbian Docker Image Guide / 镜像说明

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

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 refers to the arm64 platform. You can use ophub/armbian-bullseye:arm64 or ophub/armbian-bullseye:latest.

代码里的 IP 使用局域网未被占用的 IP 地址。

代码结尾处的分支标签 latestarm64 平台。可以使用 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

View Docker startup logs / 查看日志

docker logs -f armbian-bullseye

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

docker exec -it armbian-bullseye bash

Exit the container / 退出容器

exit

Remove the container / 删除容器

docker rm -f armbian-bullseye

Tag summary

Content type

Image

Digest

sha256:dc32ccfd3

Size

313 MB

Last updated

11 months ago

docker pull ophub/armbian-bullseye