The app runs in two docker containers, one each for frontend and backend.
docker-compose up -d --build
Add key-value pairs of environment variables.
FILES_VOLUME='/some/unix/path/'
DEBUG=0
To override the DEBUG environment variable run the following command.
DEBUG=1 docker-compose up -d --build
docker-compose stop
To stop and also remove the containers run the following command.
docker-compose down