4d6bc775b3
The created time of the containerd is initialized with nanoseconds, it seems to be a mistake. In other places of the code, this field is initialized with seconds: $ grep -rh 'time\.Now()\.Unix()' | grep Created Created: time.Now().Unix(), Created: time.Now().Unix(), return []image.HistoryResponseItem{{ID: img, Created: time.Now().Unix()}}, nil We can also see the the formatter assumes it to be seconds: cli/command/formatter/container.go ---- func (c *ContainerContext) CreatedAt() string { return time.Unix(c.c.Created, 0).String() } Interestingly, initializing the field with nanoseconds seems to work, except on mips architecture, where it causes some kind of overflow. ~~~~ === Failed === FAIL: cli/command/container TestContainerListWithoutFormat (0.00s) list_test.go:183: assertion failed: --- expected +++ actual @@ -1,7 +1,7 @@ CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES -container_id busybox:latest "top" Less than a second ago Up 1 second c1 -container_id busybox:latest "top" Less than a second ago Up 1 second c2 -container_id busybox:latest "top" Less than a second ago Up 1 second 80-82/tcp c3 -container_id busybox:latest "top" Less than a second ago Up 1 second 81/udp c4 -container_id busybox:latest "top" Less than a second ago Up 1 second 8.8.8.8:82->82/tcp c5 +container_id busybox:latest "top" -153722867 minutes ago Up 1 second c1 +container_id busybox:latest "top" -153722867 minutes ago Up 1 second c2 +container_id busybox:latest "top" -153722867 minutes ago Up 1 second 80-82/tcp c3 +container_id busybox:latest "top" -153722867 minutes ago Up 1 second 81/udp c4 +container_id busybox:latest "top" -153722867 minutes ago Up 1 second 8.8.8.8:82->82/tcp c5 === FAIL: cli/command/container TestContainerListNoTrunc (0.00s) list_test.go:198: assertion failed: --- expected +++ actual @@ -1,4 +1,4 @@ CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES -container_id busybox:latest "top" Less than a second ago Up 1 second c1 -container_id busybox:latest "top" Less than a second ago Up 1 second c2,foo/bar +container_id busybox:latest "top" -153722867 minutes ago Up 1 second c1 +container_id busybox:latest "top" -153722867 minutes ago Up 1 second c2,foo/bar ~~~~ Logs above taken from: https://buildd.debian.org/status/fetch.php?pkg=docker.io&arch=mipsel&ver=20.10.0%7Erc1%2Bdfsg3-1&stamp=1606895899 ~~~~ === RUN TestChtimesLinux chtimes_linux_test.go:87: Expected: 2262-04-11 23:47:16 +0000 UTC, got: 1990-01-27 10:50:44 +0000 UTC --- FAIL: TestChtimesLinux (0.00s) === RUN TestChtimes chtimes_test.go:92: Expected: 2262-04-11 23:47:16 +0000 UTC, got: 1990-01-27 10:50:44 +0000 UTC --- FAIL: TestChtimes (0.00s) ~~~~ Logs above taken from: https://buildd.debian.org/status/fetch.php?pkg=docker.io&arch=mips64el&ver=20.10.0%7Erc1%2Bdfsg3-1&stamp=1606895622 Signed-off-by: Arnaud Rebillout <elboulangero@gmail.com> |
||
---|---|---|
.circleci | ||
.github | ||
cli | ||
cli-plugins | ||
cmd/docker | ||
contrib/completion | ||
dockerfiles | ||
docs | ||
e2e | ||
experimental | ||
internal/test | ||
kubernetes | ||
man | ||
opts | ||
scripts | ||
service/logs | ||
templates | ||
vendor | ||
.dockerignore | ||
.gitignore | ||
.golangci.yml | ||
.mailmap | ||
AUTHORS | ||
CONTRIBUTING.md | ||
Jenkinsfile | ||
LICENSE | ||
MAINTAINERS | ||
Makefile | ||
NOTICE | ||
README.md | ||
TESTING.md | ||
VERSION | ||
appveyor.yml | ||
codecov.yml | ||
docker.Makefile | ||
poule.yml | ||
vendor.conf |
README.md
docker/cli
This repository is the home of the cli used in the Docker CE and Docker EE products.
Development
docker/cli
is developed using Docker.
Build a linux binary:
$ make -f docker.Makefile binary
Build binaries for all supported platforms:
$ make -f docker.Makefile cross
Run all linting:
$ make -f docker.Makefile lint
List all the available targets:
$ make help
In-container development environment
Start an interactive development environment:
$ make -f docker.Makefile shell
In the development environment you can run many tasks, including build binaries:
$ make binary
Legal
Brought to you courtesy of our legal counsel. For more context, please see the NOTICE document in this repo.
Use and transfer of Docker may be subject to certain restrictions by the United States and other governments.
It is your responsibility to ensure that your use and/or transfer does not violate applicable laws.
For more information, please see https://www.bis.doc.gov
Licensing
docker/cli is licensed under the Apache License, Version 2.0. See LICENSE for the full license text.