Docker
January 11, 2022 ยท View on GitHub
For historical reasons, Compose files are located in ../../compose/
MacOS Quickstart
- Install and start Docker Desktop
- 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/*
- Start Mongo and Redis (from
../../compose/)
docker-compose -f mongo-local-01.yaml up -d
docker-compose -f redis-local.yaml up -d
- Start the local sever (see ../README.md)