skip to Main Content

Why is my .dockerignore file not working?

I have a .dockerignore file with the following contents: **/__pycache__ **/.venv **/.git **/.gitignore **/.dockerignore **/dockerfile* **/docker-compose* postgres_data/ and this is my docker-compose.yml version: '3.8' services: django_app: image: django_image container_name: Django build: context: . dockerfile: django_app/dockerfile command: - /bin/sh - -c…

VIEW QUESTION
Back To Top
Search