As shown below:nsenter -t 1 -m -u -n -i sh -c "echo hello world!" Add privilege permissions to the docker container and set pid: "host" Supplement: Execute shell scripts or commands in docker containers on the host Common command forms:docker exec -it master /bin/bash -c 'echo $PATH' docker exec -it master /bin/bash -c 'cd /home/bigdata/shell && ./test.sh' If the shell script involves environment variables, or prompts JAVA_HOME is not set, you can add the following command to the script export JAVA_HOME=jdk path Supplement: Run the commands executed in the container in Docker on the Docker host The script is as follows:docker exec -u root xxx(container name) bash -c 'command 1 && command 2' A practical example is as follows: docker exec -u root mycentos bash -c 'mkdir /home/test.txt && chmod 777 /home/test.txt && runuser - oracle -c "rm -rf /home/test.txt"' The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me. You may also be interested in:
|
<<: Summary of tips for making web pages
>>: We're driving IE6 to extinction on our own
Preface There are two types of nginx modules, off...
[mysql] replace usage (replace part of the conten...
Recently, when I was working on a conference heal...
Table of contents Function call optimization Func...
Table of contents Brief description: 1. Four char...
This article example shares the specific code of ...
Note When developing an article display list inte...
Preface During my internship at the company, I us...
1. Set firewall rules Example 1: Expose port 8080...
Today, let's talk about how to use js to achi...
1. Enter the Docker official website First, go to...
background Two network cards are configured for t...
1. Check sql_mode select @@sql_mode The queried v...
This article example shares the specific code of ...
Add table fields alter table table1 add transacto...