Dockerfiles are used in Docker Compose, but I am not sure if it is good practice to put everything in one large Dockerfile with multiple FROM commands for the different images ?
I want to use several different images that include:
nginx
postgres
redis
rabbitmq
celery with cro
what is the best practice in setting up this type of environment using Docker?
Can anyone help me with this?