From 2e3239833e5c0758d3959d52c3fc0033a9901b00 Mon Sep 17 00:00:00 2001 From: Ee Durbin Date: Wed, 7 May 2025 06:24:08 -0400 Subject: [PATCH] fix planet job, can't use tty if there's no tty --- salt/planet/config/run-planet.sh.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/planet/config/run-planet.sh.jinja b/salt/planet/config/run-planet.sh.jinja index 01d8dd05..d0a2deeb 100644 --- a/salt/planet/config/run-planet.sh.jinja +++ b/salt/planet/config/run-planet.sh.jinja @@ -1,7 +1,7 @@ cd /srv/planet/ git pull {% for site, site_config in salt["pillar.get"]("planet", {}).get("sites").items() %} -docker run --pull=always --rm -it \ +docker run --pull=always --rm \ -v {{ site_config["cache"] }}:/srv/cache/ \ -v {{ site_config["output"] }}:/srv/planetpython.org/ \ -v /srv/planet/config/{{ site_config["config"] }}:/planet/config/config.ini \