Chris Wenner
Chris Wenner
> hello, > I have the same problem with docker-compose > I not use swarm mode > > ``` > $ docker version > Client: > Version: 18.09.1 > API...
@jsecchiero It looks like this is being set correctly under `StopGracePeriod` in the service as nanoseconds. ```yaml version: '3.6' services: nginx: stop_grace_period: 2m image: nginx:alpine ``` ```bash $ docker stack...
@jsecchiero I was testing this behavior using `docker service update` or scaling the service down. I did not attempt to use `docker stop [container]`.