Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 374 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 374 Bytes

rust-docker-web

Example of packaging a Rust web application using Docker, providing an example for using Alpine and one for Debian.

Create Alpine using

make alpine
docker run -p 8000:8000 rust-alpine
curl http://localhost:8000/health

Create and Run Debian using

make debian
docker run -p 8000:8000 rust-debian
curl http://localhost:8000/health