How to update easily?
I am not familiar with Docker. Is it sufficient to update this project by first cloning the repository with git clone and then building the Docker images with docker-compose --build?
It seems if I remove the directory first without docker-compose down then the docker can not be kill forever
Command docker-compose up --build first takes down running docker containers and then setups new ones
if you already have the git repo in the folder remember to also do a git pull before the docker-compose command
You can use docker-compose up --build to only build the newest image (if you have changed code) or then use docker-compose up -d to build and then run the image. If you are not familiar with docker platform, run it with setup python:3.8, mongodb. Run docker-compose down in the folder containing docker-compose.yml to down all service-container declared in this file.