Reputation: 1
Sorry if this is a dumb question but i'm quite new to Docker.
I understand that, if a the --memory parameter is set and the container uses all the memory, Docker will kill the container if the container.
I wonder if it's possible to create a new container (without killing the previous one) when the container reaches a certain memory limit defined by me.
Upvotes: 0
Views: 87
Reputation: 36016
docker does not have built in service scaling.
most implementations ive seen for docker that do this use:
Upvotes: 0