I am trying to upgrade docker-engine to 23.0.0 as a part of buildroot installation. I have upgraded all the prerequisite packages i.e golang, containerd, docker-cli, runc, etc to the required higher version. But when I execute the 'docker version' command it shows in the Server section Version: library-import. For other packages i.e golang, containerd, runc correct version is displayed For the earlier version of docker-engine it shows the correct version i.e. 19. Can anyone help me on why it is not showing the correct version for 23.0.0 and instead "library-import" is displayed?
docker version command shows server version as "library-import"
94 views Asked by Jay At
1
There are 1 answers
Related Questions in DOCKER
- sqlplus myusername/mypassword@ORCL not working with Oracle on Docker
- Golang == Error: OCI runtime create failed: unable to start container process: exec: "./bin": stat ./bin: no such file or directory: unknown
- Only the first SQL script gets executed inside Docker Postgres container
- Retrieve the Dockerfile configuration from the Kubernetes and also change container Java parameter?
- Polars with Rust: Out of Memory Error when Processing Large Dataset in Docker Using Streaming
- Compiling eBPF program in Docker fails due to missing '__u64' type
- AttributeError: module 'numba' has no attribute 'generated_jit'
- Phoenix in a docker dev environment - generated code can't be saved from VSCode
- Docker on Multipass VMs: Connecting worker nodes to swarm results in rcp error
- Facing error in creating image of my react+vite project . Dockerfile error
- NextJS Docker build fails: fetch failed ECONNREFUSED
- Docker container unable to make HTTPS requests to external API
- Failed to connect to your instance after deploying mern app on aws ec2 instance when i try to access frontend
- Connecting to Postgres running in a Docker container using psql
- Can't connect to local postgresql server from my docker container
Related Questions in BUILDROOT
- Enable Driver Using Buildroot Menuconfig
- docker version command shows server version as "library-import"
- uImage is not supported in kexec_file
- embedded linux buildroot how to work with axi-gpio?
- buildroot for zedboard, how to enable axi-gpio in device tree?
- Building lttng-modules using buildroot for a custom kernel
- Buildroot external not entering into project source directory specified by HELLO_SITE specified in hello.mk file
- Adding udev package in Buildroot
- Buildroot, U-boot: Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)
- How to activate tristate in Buildroot
- Connect via wpa_supplicant from Lua Application and .sh scripts
- How to use Azure IoT C SDK with an embedded Linux device and COM-port connected modem
- How to add my own qt application to buildroot?
- Buildroot cross compiling shared libraries to be loaded via dlopen()
- Use _TIME_BITS=64 to solve the y2038 problem
Related Questions in DOCKER-ENGINE
- Docker-engine confilcts with docker.io
- How to install docker-engine 1.13 on debian Jessie
- Avoid docker exec zombie processes when connecting to containers via bash
- Docker container not running (odoo with docker)
- Issues updating Docker to version 24.0.7 – missing cli-plugins file causing service startup failure
- Container abruptly killed with warning "cleaning up after killed shim"
- What is the reason of error Status: no matching manifest for windows/amd64 10.0.17763 in the manifest list entries, Code: 1?
- Spring spring-boot:build-image gives HTTP 500 error
- Docker connect to remote daemon via ssh - Permission denied (publickey)
- Increasing the memory allocation to docker daemon (dockerd) on Linux
- Linking 2 docker container together via creating services (swarm mode) by using docker api
- Set the number of CPU cores of a container using Docker Engine API
- `docker start` in parallel?
- How to set a docker-compose /bin/bash entrypoint?
- Is there a downside for running docker experimental features?
Related Questions in DOCKER-CLI
- docker version command shows server version as "library-import"
- Incorrect JSON format from docker compose ps
- Docker pull image, match tag by regex/wildcard
- why docker start command starts containers in detached mode by default
- Docker-compose not building up successfully
- Getting the following error ' unauthorized: authentication required ' when i try to pull an image in docker
- Docker "-v " is not recognized as an internal or external command
- How to remove Cursor Position ANSI escape code from `HijackedResponse` in Go?
- How to prune old docker images, but only for a selected container?
- How to find active docker images and volumes?
- Running container fails with failed to add the host cannot allocate memory
- How to run CLI on docker desktop on windows11
- Docker: mount path must be absolute when using volume
- Printing the endpoint of the current Docker context
- Accessing docker-cli string array element in Go templates
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
You can see similar "error" in the version in this issue, or this one.
This is generally linked to the Docker installation or upgrade process, due to an incomplete or incorrect installation. You are using a packager (buildroot), so this is not your issue.
Since you are upgrading Docker as part of a buildroot setting, then I see a a patch ("fix btrfs handling") which might have an impact depending on your configuration.
Plus, docker-engine now requires
libseccompby default: makes sure that is part of your dependencies.As noted by Arnout in the comments