using docker run command
docker run --pull=always --rm -it -p 8080:8080 --user=root \\
-v /var/run/docker.sock:/var/run/docker.sock \\
-v /tmp:/tmp kestra/kestra:latest-full server local
# now you go to localhost:8080 on browser
use Docker compose to set up Kestra
step 1 - create the docker-compose.yaml file by running command in gitbash terminal
curl -o docker-compose.yml \\
<https://raw.githubusercontent.com/kestra-io/kestra/develop/docker-compose.yml>
# this will copy the docker-compose.yml file from the kestra repo