Docker executes a command in a container outside the container

Docker executes a command in a container outside the container

Sometimes we want to execute a command in a container but don't want to enter the container. What to do then?

So the script can be written like this

#!/bin/bash
DOCKER_ID=62f3f40ab240
sudo docker exec -it $DOCKER_ID /bin/bash -c 'cd /packages/detectron && python tools/train.py'

done

Supplementary knowledge: Solve the problem of seamlessly calling shell commands between Docker containers and host machines

I won't say any more nonsense, let's see the solution~

nsenter -t 1 -m -u -n -i sh -c "echo hello world!"

(Add privilege permissions to the docker container and set pid: "host")

The above article about how to execute a command in a container outside the container is all I have to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Docker exec executes multiple commands
  • How to execute Linux shell commands in Docker
  • How to execute Docker commands without sudo
  • Execute multiple commands after docker run
  • Solve the problem of errors when executing docker daemon commands
  • Docker commands are implemented so that ordinary users can execute them

<<:  MySQL trigger usage scenarios and method examples

>>:  About VSCode formatting JS automatically adding or removing semicolons

Recommend

How to periodically clean up images that are None through Jenkins

Preface In the process of continuous code deliver...

mysql8.0.11 winx64 installation and configuration tutorial

The installation tutorial of mysql 8.0.11 winx64 ...

Detailed installation instructions for the cloud server pagoda panel

Table of contents 0x01. Install the Pagoda Panel ...

WeChat Mini Programs Achieve Seamless Scrolling

This article example shares the specific code for...

What to do if you forget your mysql password

Solution to forgetting MySQL password: [root@loca...

Vue implements Modal component based on Teleport

Table of contents 1. Get to know Teleport 2. Basi...

How to view mysql binlog (binary log)

For example, when you create a new table or updat...

How to install openssh from source code in centos 7

Environment: CentOS 7.1.1503 Minimum Installation...

JavaScript canvas realizes the effect of nine-square grid cutting

This article shares the specific code of canvas t...

Will Update in a Mysql transaction lock the table?

Two cases: 1. With index 2. Without index Prerequ...

Let's talk about the v-on parameter problem in Vue

Use of v-on:clock in Vue I'm currently learni...

Use non-root users to execute script operations in docker containers

After the application is containerized, when the ...