Kuma installation running without an end

i ran docker-compose up and from then my code is running for about 3 hours now here it is https://pastebin.com/embed_js/ec0j8LHz

docker-compose up builds, (re)creates, starts, and attaches to containers for a service. Unless they are already running, this command also starts any linked services.

If you run docker-compose up, it runs in the foreground, and shows the logs for all the services, the same as docker-compose logs -f. This is useful for debugging (and is used in the Kuma reset), but not usually useful for development. When you run it this way, it will run until you cancel it, with Ctrl-C or similar. At that point, docker-compose will stop all the containers.

Most Kuma developers run docker-compose up -d, which starts the containers in detached mode, in the background. This is the method recommended in the install instructions.

1 Like