docker-discordjs-tutorial icon indicating copy to clipboard operation
docker-discordjs-tutorial copied to clipboard

Do you have a way to update container without downtime?

Open DJCoolDev opened this issue 3 years ago • 1 comments

If u do not use docker images you can make reload commands for simple updating commands/ code without any downtime. How is this possible with docker?

DJCoolDev avatar May 27 '21 09:05 DJCoolDev

You cannot do this without downtime. But doing this as this:

docker compose pull
docker compose down
docker compose up -d

will allow you to get smallest possible downtime.

Maks1116 avatar Apr 30 '23 12:04 Maks1116