Skip to main content

Docker Configuration

Start on Boot

To run the docker container automatically on system startup, run it with the --restart always option. For a complete list of start options see Docker start on boot.

docker run \
--restart-always \
-e KEY=example \
-t platerecognizer/people-detection\
--url <CAMERA_URL>\
--webhook <WEBHOOK_SITE>
danger

For the command above, make sure to change XXXXX to the License Key and YYYYY to your Plate Recognizer Token. Get your Token. Use On-Premise Licenses.

Networking

  • Add --network=host to use the host's networking directly.
  • Add --detach to run the container in background.
Floating button icon
CTRL + .