1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/docker
2023-01-02 20:33:43 +00:00
..
src restructure folders 2022-02-18 02:01:48 +00:00
.dockerignore restructure folders 2022-02-18 02:01:48 +00:00
Cargo.toml move a couple more things to workspace deps 2023-01-02 20:33:43 +00:00
Dockerfile restructure folders 2022-02-18 02:01:48 +00:00
README.MD restructure folders 2022-02-18 02:01:48 +00:00

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