techrec.conf 370 B

12345678910111213
  1. ### Supervisor script for techrec
  2. #however, docker run does not seem to behave well in being supervisorized
  3. [program:techrec]
  4. autostart=true
  5. command=docker run -a stdout -a stderr -rm -v /data/techrec:/output -v
  6. /rec:/input -expose 8000 -p 9180:8000 --name tr techrec:latest
  7. /opt/virtualenv/bin/python cli.py serve
  8. startsecs=2
  9. autorestart=false
  10. # vim: set ft=dosini: