mongodb-gridfs 0.1.1

An implementation of Mongo GridFS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: '3'
services:
  db:
    image: mongo:latest
    volumes:
      - ./mongo:/docker-entrypoint-initdb.d
    ports:
      - 27017:27017
    environment:
      - MONGO_INITDB_DATABASE=test

  mongo-express:
    image: mongo-express:latest
    links:
      - db:mongo
    ports:
      - 8081:8081