/litestar-hello

Testing deployment with docker

Primary LanguageDockerfile

litestar-hello

Commands

Build an image:

docker build -t hello . -f Dockerfile.prod

Create a container:

docker create -p 9001:8000 --restart always --name litestar-hello hello

Start the container:

docker start litestar-hello