This repository contains a project template for students' assignments focused on car plate detection.
To start working with this project, first clone the repository using the following command:
git clone https://github.com/arm2arm/project1.git
cd project1
Before running the project, you need to build the Docker image. Use the following command:
docker build --pull --rm -f "Dockerfile" -t "carplatedetection:latest" "."
If you want to run the application in a debugging environment, use the following command:
docker run -it carplatedetection:latest /bin/bash
To deploy the application in a production environment, execute the following command:
docker run -p 8508:8501 -d --name project1 carplatedetection:latest
To stop the running container, use the following command:
docker stop project1
After stopping the container, you can clean up by removing it with this command:
docker rm project1
Feel free to reach out if you have any questions or need further assistance!