我有一个带有python应用程序的docker容器。应用程序需要配置文件的路径作为命令行参数:
$ python MyApp.py config.json
我的docker文件看起来像这样
# Use an official Python runtime as a parent image
FROM python:3.6-slim
# Set the working directory to /app
WORKDIR /app
# Copy the current directory contents into the container at /app
ADD . /app
# Install any needed packages specified in requirements.txt
RUN pip install --trusted-host pypi.python.org -r requirements.txt
# Make port 80 available to the world outside this container
EXPOSE 80
# Run app.py when the container launches
CMD ["python", "app.py"]
如何将配置文件的命令行参数传递给docker容器内的应用程序?配置文件的目录位于容器内:
ContainerDir
-> app.py
-> Dockerfile
-> Config/config.json
谢谢!
答案 0 :(得分:-1)
在docker run
命令中,图像名称后面的任何内容都将被解析为[COMMAND] [ARGS...]
。
在您的情况下,您可以使用以下docker run
命令将额外的参数传递给您的程序。
docker run <image>:<tag> python app.py Config/config.json
P.S。 Docker运行参考:https://docs.docker.com/engine/reference/run/