Hello everyone, today I will share with you some commands about cloud containers.
CloudIVS3000 and IVS3800 use container technology. Here are four commonly used commands.
First,You have logged in to the OS. For details,Please check the product documentation.
Next is the introduction of some commands.
Query the container ID.
docker ps |grep xxx (xxx indicates the name of the container to be queried.)
For example.
Querying MPUs

2.Logging in to container.
docker exec -ti xxx bash (xxx indicates the container ID.)
For example.

3.Copy the file to the container.
docker cp /xxx/yyy zzz:/ccc
xxx indicates the physical machine file path.
yyy indicates the name of the physical machine file.Use the entire file name.
zzz indicates the container ID.
ccc indicates the path in the container.
For example.

4.Copy files from container to physical machine.
This command is similar to point 3.
docker cp zzz:/ccc/bbb /xxx/
zzz indicates the container ID.
ccc indicates the path in the container.
bbb indicates the name of the container file.
xxx indicates the physical machine file path.
For example.

