skip to Main Content

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…

VIEW QUESTION

Docker-Compose Parse Dashboard

I am trying to run parse dashboard via the following docker-compose.yml: version: '3' services: mongo: image: mongo ports: - 27017:27017 volumes: - ./data-db:/data/db parse: image: parseplatform/parse-server ports: - 1337:1337 links: - mongo environment: - PARSE_SERVER_APPLICATION_ID=yourappid - PARSE_SERVER_MASTER_KEY=yourmasterkey - PARSE_SERVER_DATABASE_URI=mongodb://mongo:27017/dev -…

VIEW QUESTION
Back To Top
Search