Pull image. And PostgreSQL

Hello. I’m a new user of docker for windows. I mostly create containers, but this kind of task came up:
"PostgreSQL (including Postgis) and Redis are required to run backupper.

Script to create tables in DB — cropio_api_structure.sql
Pull image from Docker Hub docker pull cropio/cropio-backupper

Launch

Container launch command example (you must specify logins and passwords in variables):

docker run -e “REDIS_HOST=” -e “CROPIO_LOGIN=” -e “CROPIO_PASSWORD=”
-e “DB_NAME=” -e “DB_PORT=” -e “DB_USERNAME=” -e “DB_PASSWORD=” -e “DB_HOST=”
-e “DOWNLOAD_SLEEP=10” --restart=always cropio/cropio-backupper

or in case you decide to use API_TOKEN:

docker run -e “REDIS_HOST=” -e “API_TOKEN=”
-e “DB_NAME=” -e “DB_PORT=” -e “DB_USERNAME=” -e “DB_PASSWORD=” -e “DB_HOST=”
-e “DOWNLOAD_SLEEP=10” --restart=always cropio/cropio-backupper "
could you please explain step by step for a beginner how to do this?
(GitHub - cropio/cropio-backupper)

Hello, have you found solution?

I’m not sure what the original question was about, probably this is why it got not replies. Maybe you can explain your issue.

The original question just quoted a part of the readme file without any context and details of what the problem was with it. The quoted parts are just showing what variables you need to use, but you need to set the values after the equal sign.

If you have application specific issues like how to configure a specific application, you might want to ask about it in a community where people are using it or contact the maintainer to ask for a more detailed guide.