I have a python file called perf_alarm_checker.py
, this python file requires two command line arguments: python perf_alarm_checker.py -t something -d something
, the Dockerfile looks like this:
# Base image
FROM some base image
ADD perf_alarm_checker.py /perf-test/
CMD python perf_alarm_checker.py
How to pass the two command line arguments, -t
and -d
to docker run
? I tried docker run -w /perf-test alarm-checker -t something -d something
but doesn't work.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…