Docker

January 11, 2022 ยท View on GitHub

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)