# On Android 8 the system partition is (intended to be) mounted on /. %define makefstab_skip_entries / /vendor /dev/stune /dev/cpuset /sys/fs/pstore /dev/cpuctl
#!/usr/bin/python from registry import RegistryApi api = RegistryApi('admin', 'password', 'http://pk8stemp02.rmz.flamingo-inc.com:8888') maxsize = 65536 repos = api.getRepositoryList(maxsize) repositories = repos.get('repositories') for repo in repositories: tags = api.getTagList(repo).get('tags') if tags: for tag in tags: print(repo + ":" +tag) ```
Generally Necessary must be all enabled, if not enabled, you must enable it in your kernel defconfig, and rebuild kernel. Generally Necessary 部分必须全部是enabled, 如果没有启用,必须启用然后重启编译内核。
Client: Version: 18.06.1-ce API version: 1.38 Go version: go1.10.3 Git commit: e68fc7a Built: Tue Aug 21 17:20:38 2018 OS/Arch: linux/arm64 Experimental: false
Server: Engine: Version: 18.06.1-ce API version: 1.38 (minimum version 1.12) Go version: go1.10.3 Git commit: e68fc7a Built: Tue Aug 21 17:27:20 2018 OS/Arch: linux/arm64 Experimental: false
Test/测试 devel-su docker run hello-world
This command downloads a test image and runs it in a container. When the container runs, it prints an informational message and exits. / 这个命令会下载一个测试镜像,如果执行成功会打印如下信息
[root@Sailfish nemo]# docker run hello-world Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world 255483503861: Pull complete Digest: sha256:4b8ff392a12ed9ea17784bd3c9a8b1fa3299cac44aca35a85c90c5e3c7afacdc Status: Downloaded newer image for hello-world:latest
Hello from Docker! This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps: 1. The Docker client contacted the Docker daemon. 2. The Docker daemon pulled the "hello-world" image from the Docker Hub. (arm64v8) 3. The Docker daemon created a new container from that image which runs the executable that produces the output you are currently reading. 4. The Docker daemon streamed that output to the Docker client, which sent it to your terminal.
To try something more ambitious, you can run an Ubuntu container with: $ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID: https://hub.docker.com/
For more examples and ideas, visit: https://docs.docker.com/engine/userguide/
[nemo@Sailfish ~]$ curl -s 127.0.0.1:6080 <!DOCTYPE html> <html> <head> <title>Welcome to nginx!</title> <style> body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h1>Welcome to nginx!</h1> <p>If you see this page, the nginx web server is successfully installed and working. Further configuration is required.</p>
<p>For online documentation and support please refer to <a href="http://nginx.org/">nginx.org</a>.<br/> Commercial support is available at <a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p> </body> </html> [nemo@Sailfish ~]$