Skip to content

Latest commit

 

History

History

docker

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Docker sample

Build image

docker build -t actix-docker .

Run built image

docker run -d -p 8080:8080 actix-docker
# and the server should start instantly
curl http://localhost:8080

Running unit tests

docker build -t actix-docker:test .
docker run --rm actix-docker:test