Skip to content

Instantly share code, notes, and snippets.

@oosidat
Created January 17, 2017 15:56

Revisions

  1. oosidat created this gist Jan 17, 2017.
    13 changes: 13 additions & 0 deletions docker-compose-mongo-redis.yml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,13 @@
    mongo:
    image: mongo:3.2.11
    volumes:
    - /data/db/mongo
    ports:
    - "27017:27017"

    redis:
    image: redis
    volumes:
    - /data/db/redis
    ports:
    - "6379:6379"