Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
632 views
in Technique[技术] by (71.8m points)

docker - How to pass arguments to a bash script through Dockerfile


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

For Docker to use your build arguments, you need to specify them by name in your Dockerfile as an ARG. Once you do that, these variables will be available for you to use as arguments.

FROM kalilinux/kali-rolling

# Add build args
ARG aws_access_key_id
ARG aws_secret_access_key
ARG default_region
ARG bucket


WORKDIR /attack

COPY . /attack
RUN ls
RUN chmod +x attack.sh
RUN ./attack.sh $aws_access_key_id $aws_secret_access_key $default_region $bucket

I'm not sure this will do what you want it to do since the script will be run during build time. However, it will pass your arguments from the docker build command to the parameters of attack.sh.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...