Громкость Docker установлена, но код не обновляет код - PullRequest
0 голосов
/ 22 марта 2019

У меня есть следующий Dockerfile для приложения django, которое я создаю

# base image to be used
FROM python:3.6
# The enviroment variable ensures that the python output is set straight
# to the terminal with out buffering it first
ENV PYTHONUNBUFFERED 1

# create root directory for our project in the container
#RUN mkdir /code

# Set the working directory to the created dir
WORKDIR /code

# add the requiremnets file to the working dir
COPY requirements.txt /code/

#instal the requirements (install before adding rest of code to avoid rerunning this at every code change-built in layers)
RUN pip3 install -r requirements.txt

# Copy the current directory contents into the container at /music_service
COPY . /code/

#set environments to be used
ENV AUTHOR="Mokgadi Rasekgala "

EXPOSE 8000

VOLUME /code

#run the service docker app
CMD /code/start.sh

когда я создаю файл и запускаю его с помощью следующей команды

docker run -it -p 8000:8000 <image>

том, кажется, не смонтирован в каталоге / code

Я также попытался запустить его как

docker run -it -v my-vol:/code -p 8000:8000 <image>

но также не распознает изменения, которые я делаю для просмотра без первого здания

Как-то мне не хватает того, как определить Объем. Я пытаюсь сделать изменения видимыми без необходимости сборки и повторного запуска

...