Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 520 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 520 Bytes

Docker

For historical reasons, Compose files are located in ../../compose/

MacOS Quickstart

  1. Install and start Docker Desktop
  2. Create Mongo and Redis data directories:
mkdir -p /tmp/redisdata
mkdir -p /tmp/mongo-01/db
# Optional remove old data
rm -rf /tmp/mongo-01/db/*
  1. Start Mongo and Redis (from ../../compose/)
docker-compose -f mongo-local-01.yaml up -d
docker-compose -f redis-local.yaml up -d
  1. Start the local sever (see ../README.md)