لقد أجريت بعض التحديثات على دوكيرفيل لأحد الخدمات، ولكن التغييرات لا تعكس ، عند تشغيل docker-compose build
، ولا حتى مع --no-cache
الخيار.
أضفت اثنين اثنين من المعلمة قبل تشغيل pip install -f requirements.txt
، ولكن لا يتم تنفيذها في أي وقت: فهي تذهب مباشرة إلى خطوة المتطلبات.
$ docker-compose build --no-cachemongo uses an image, skippingpostgres uses an image, skippingelasticsearch uses an image, skippingBuilding nucleoStep 1/9 : FROM python:3.6 ---> 2bb3204ab1d1Step 2/9 : COPY core/ /container_core/ ---> cc1eadcb80a3Step 3/9 : WORKDIR /container_core ---> Running in e8afa25b9c9aRemoving intermediate container e8afa25b9c9a ---> f9b928dee6f5Step 4/9 : RUN pip install -r requirements.txt ---> Running in 84f474edb526^CERROR: Aborting.
عامل الميناء-يؤلف.يمل
services: mongo: image: "mongo:4.0.5" container_name: compose_mongo restart: always environment: - MONGO_INITDB_ROOT_USERNAME=mongo - MONGO_INITDB_ROOT_PASSWORD=mongopass ports: - "27017:27017" core: build: context: /home/ivanleoncz/git/core dockerfile: Dockerfile container_name: compose_core depends_on: - mongo env_file: - .env ports: - "8000:8000"
دوكيرفيل
FROM python:3.6COPY core/ /container_core/WORKDIR /container_core# must run before requirementsRUN pip install --upgrade pipRUN pip install urllib3=1.20# then, run the requirementsRUN pip install -r requirements.txtCMD ["python3", "manage.py", "makemigrations", "app1"]CMD ["python3", "manage.py", "makemigrations", "app2"]CMD ["python3", "manage.py", "makemigrations", "app3"]CMD ["python3", "manage.py", "migrate"]CMD ["python3", "manage.py", "runserver"]
أنا باستخدام عامل الميناء يؤلف 1.21.2 ، مع أوبونتو 18.04.2.
كيف يمكنني ضمان ذلك docker-compose
لا تستخدم نسخة قديمة من دوكيرفيل بلدي ، على الرغم من أنني أصف أنني أريد تنفيذ البناء، دون أي ذاكرة التخزين المؤقت (--no-cache
)?