docker run restart always code example
Example 1: docker run restart always
$ docker run --restart=always redis
Example 2: docker run restart on boot
$ docker run -d --restart unless-stopped <image>
Example 3: docker run command on container
sudo docker exec -it <container name> <command>
Example 4: docker machine keep restarting
# first step is checking the docker logs like this
docker logs --tail 50 --follow --timestamps <machine_name>