mirror of
https://github.com/actix/examples
synced 2024-11-23 22:41:07 +01:00
329 B
329 B
Docker sample
Build image
docker build -t docker_sample .
Run built image
docker run -d -p 8080:8080 docker_sample
# and the server should start instantly
curl http://localhost:8080
Running unit tests
docker build -t docker_sample:test .
docker run --rm docker_sample:test