Advertisement
Abdeltif_b

fucking mangodb container

Feb 20th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #mongoDB
  2. mongo:
  3. image: mongo:4.1
  4. container_name: mongo-db
  5. # volumes:
  6. # - /Websites/gql/laravel/mongodb:/docker-entrypoint-initdb.d/
  7. # - /Websites/gql/docker/mongo/db:/data/configdb
  8. ports:
  9. - 27017:27017
  10. restart: always
  11. environment:
  12. MONGO_INITDB_ROOT_USERNAME: root
  13. MONGO_INITDB_ROOT_PASSWORD: pass
  14. # MONGO_INITDB_DATABASE: laravel
  15. networks:
  16. - app-network
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement