docker image is built with the scripts/docker_image_build.sh script.
./scripts/docker_image_build.shyou can change image name and version in the scripts/docker_image_build.sh file.
# with nginx server
docker run -d -p 80:80 fastapi-app:1.0.0
# or directly with fastapi server
docker run -d -p 8000:8000 fastapi-app:1.0.0docker stop <container_id>docker rmi fastapi-app:1.0.0