I am not very familiar to docker and its multiple applications. I use it to host this NodeJS application by run of below command:
docker build -t quivero . && docker run --publish 8080:8080 quivero
It builds the application as we wish, but I have trouble to bring it down. I tried the usual ctrl+C
or ctrl+Z
. I tried as well sudo docker kill $CONTAINER_ID
Error response from daemon: Cannot kill container: $CONTAINER_ID: permission denied
It seems to me docker compose up
is rather preferred. What do you think?