How to solve the problem that Docker container has no vim command

How to solve the problem that Docker container has no vim command

Find the problem

Today, when I tried to modify the files in the Docker container, I found that there was no vim command in the container, and it returned:

vim my.cnf
bash: vim: command not found

This article will record how to solve this problem.

Solution

Still inside the docker container, first run the following command and wait patiently for a while:

apt-get update

Once completed run:

apt-get install vim

After the installation is complete, run the following command to verify whether the installation is successful:

vim

If an interface similar to the following is returned, it proves that vim has been successfully installed:

VIM installation successfully returns

Summarize

This is the end of this article about solving the problem of no vim command in Docker container. For more related content about no vim command in Docker container, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solution to installing vim in docker container
  • Solve the problem that vim commands cannot be used in Docker containers

<<:  This article teaches you how to import CSS like JS modules

>>:  Mysql query database capacity method steps

Recommend

Solutions to the Problem of Creating XHTML and CSS Web Pages

The solutions to the problems encountered during x...

JavaScript to achieve progress bar effect

This article example shares the specific code of ...

7 useful new TypeScript features

Table of contents 1. Optional Chaining 2. Null va...

CSS horizontal progress bar and vertical progress bar implementation code

Sometimes it’s nice to see some nice scroll bar e...

How to solve the problem that Docker container has no vim command

Find the problem Today, when I tried to modify th...

CSS naming conventions (rules) worth collecting Commonly used CSS naming rules

CSS naming conventions (rules) Commonly used CSS ...

WeChat applet uses canvas to draw clocks

This article shares the specific code of using ca...

How to modify the IP restriction conditions of MySQL account

Preface Recently, I encountered a requirement at ...

Detailed explanation of several solutions for JavaScript interruption requests

Table of contents 1 Promise Interrupt the call ch...

How to modify the sources.list of Ubuntu 18.04 to Alibaba or Tsinghua mirror

1. Backup source list The default source of Ubunt...

MySQL 8.0.15 winx64 installation and configuration method graphic tutorial

This article shares the installation and configur...

What you need to know about msyql transaction isolation

What is a transaction? A transaction is a logical...

How to set background blur with CSS

When making some pages, in order to make the page...

Flex layout makes adaptive pages (syntax and examples)

Introduction to Flex Layout Flex in English means...

Detailed steps to upgrade mysql8.0.11 to mysql8.0.17 under win2008

Upgrade background: In order to solve the vulnera...