Sign inSign up

ophub/armbian-jammy

By ophub

Updated 7 months ago

Image
0

1.2K

ophub/armbian-jammy 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-jammy:arm64 or ophub/armbian-jammy:amd64

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

代码结尾处的分支标签 latest 默认为 arm64 平台, 有 arm64amd64 之分,根据设备选择合适的镜像。例如 ophub/armbian-jammy:arm64 或者 ophub/armbian-jammy:arm64

docker run -itd --name=armbian-jammy \
  --privileged \
  --network macvlan \
  --ip 10.1.1.15 \
  --hostname=armbian-jammy \
  -e TZ=Asia/Shanghai \
  --restart unless-stopped \
  ophub/armbian-jammy:arm64

View Docker startup logs / 查看日志

docker logs -f armbian-jammy

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

docker exec -it armbian-jammy bash

Exit the container / 退出容器

exit

Remove the container / 删除容器

docker rm -f armbian-jammy

Tag summary

Content type

Image

Digest

sha256:5a635065a

Size

354 MB

Last updated

7 months ago

docker pull ophub/armbian-jammy