Docker compose file ownership
问题 I created Django project with Docker Compose: Dockerfile FROM python:2.7 ENV PYTHONUNBUFFERED 1 RUN mkdir /code WORKDIR /code ADD . /code/ RUN pip install -r requirements.txt WORKDIR /code/example ENTRYPOINT ["python", "manage.py"] docker-compose.yml postgres: image: postgres ports: - '5432:5432' django-project: build: . command: runserver 0.0.0.0:8000 volumes: - .:/code ports: - '8000:8000' links: - postgres It work nice. But all new files which create through container 'django-project' have