This project is mirrored from https://gitee.com/mirrors/nomad.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
  1. 17 May, 2021 3 commits
  2. 12 May, 2021 9 commits
  3. 11 May, 2021 1 commit
  4. 10 May, 2021 5 commits
  5. 07 May, 2021 15 commits
  6. 06 May, 2021 5 commits
  7. 05 May, 2021 2 commits
    • Isabel's avatar
      Merge pull request #10441 from hashicorp/b-docker-stopsignal · 7d5a9ecd
      Isabel authored
      drivers/docker: add support for STOPSIGNAL
      7d5a9ecd
    • Isabel Suchanek's avatar
      drivers/docker: add support for STOPSIGNAL · 379c0951
      Isabel Suchanek authored
      This fixes a bug where Nomad overrides a Dockerfile's STOPSIGNAL with
      the default kill_signal (SIGTERM).
      
      This adds a check for kill_signal. If it's not set, it calls
      StopContainer instead of Signal, which uses STOPSIGNAL if it's
      specified. If both kill_signal and STOPSIGNAL are set, Nomad tries to
      stop the container with kill_signal first, before then calling
      StopContainer.
      
      Fixes #9989
      379c0951