Skip to content
  • anarcat's avatar
    hotfix: do not call docker with --tty, it crashes under systemd · 39532430
    anarcat authored
    Any `docker run --tty` (which `-it` implies) crashes with:
    
        the input device is not a TTY
    
    ... when running as a systemd service. It seems like keeping
    `-i` (which we expand to `--interactive` for clarity) keeps everything
    normal (ie. we still see the container output).
    
    Closes: #15
    39532430