Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 676 Bytes

DOCKER_SETUP.md

File metadata and controls

36 lines (25 loc) · 676 Bytes

Docker Setup Notes

Setting up the server environment

Pull the latest meta_configurator status from GitHub.

Inside the meta_configurator/backend folder, create a .env.prod file, defining the passwords for the mongo database and for redis:

REDIS_PASS=your_redis_password
MONGO_PASS=your_mongo_password
MONGO_INITDB_ROOT_PASSWORD=your_mongo_password

Navigate to the backend folder

cd backend

Stopping the running containers and volumes

docker-compose down -v

Building the backend container

docker compose build --no-cache

Starting the containers

docker compose up --force-recreate --no-deps -d