You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 line
313B

  1. version: '3.7'
  2. services:
  3. mongo-db:
  4. image: mongo:3.6
  5. restart: always
  6. environment:
  7. MONGO_INITDB_ROOT_USERNAME: prisma
  8. MONGO_INITDB_ROOT_PASSWORD: prisma
  9. ports:
  10. - '127.0.0.1:27017:27017'
  11. volumes:
  12. - mongodb_data_container:/var/lib/mongo
  13. volumes:
  14. mongodb_data_container: