/yotemi_data

Database and in-memory storage configuration for Yotemi

How to run the service

You can use docker-compose to start service easily.

First of all, install docker-compose if you don't have it on your machine. Make sure you follow all prerequisites.

Secondly, you must create .env file in the root folder with content like this:

REDIS_PASSWORD=strong_redis_password

And you should create docker_postgres_password and place database password here:

some_strong_database_password

Now, you can execute this command:

# build containers and run application
docker-compose up

If you want to stop containers, just use:

docker-compose stop

If you want to remove containers, use:

docker-compose down