Docker Volumes running in alphabetical order instead of the order I placed them
I have a docker-compose.yml file that looks like this version: '3.7' services: postgres: image: postgres:12.7 restart: always environment: - POSTGRES_USER=xxxx - POSTGRES_PASSWORD=xxxx logging: options: max-size: 10m max-file: "3" ports: - '5438:5432' volumes: - ./A.sql:/docker-entrypoint-initdb.d/A.sql - ./B.sql:/docker-entrypoint-initdb.d/B.sql - ./D.sql:/docker-entrypoint-initdb.d/D.sql - ./C.sql:/docker-entrypoint-initdb.d/C.sql…