[Unit] Description={{ docker_container_name }} docker container After=docker.service Requires=docker.service [Service] TimeoutStartSec=0 Restart=always ExecStartPre=/usr/bin/docker pull {{ docker_container_name }} ExecStart=/usr/bin/docker run --rm --name %n{% if docker_container_run_options is defined %} {{ docker_container_run_options }}{% endif %} {{ docker_container_name }} ExecStop=/usr/bin/docker stop %n [Install] WantedBy=multi-user.target