1
0
mirror of https://github.com/actix/examples synced 2025-06-26 17:17:42 +02:00

Updated basics/docker_sample to v4. (#504)

This commit is contained in:
PrivateDave
2022-01-30 16:21:43 +00:00
committed by GitHub
parent 3e2b0832fa
commit 25066b754f
3 changed files with 5 additions and 5 deletions

View File

@ -5,6 +5,6 @@ authors = ["docker_sample <docker_sample@sample.com>"]
edition = "2018"
[dependencies]
actix-web = "3"
actix-web = "4.0.0-beta.21"
env_logger = "0.9"
log = "0.4"

View File

@ -9,14 +9,14 @@ docker build -t docker_sample .
## Run built image
```shell
docker run -d -p 5000:5000 docker_sample
docker run -d -p 8080:8080 docker_sample
# and the server should start instantly
curl http://localhost:5000
curl http://localhost:8080
```
## Running unit tests
```shell
docker build -t docker_sample:test --target base .
docker build -t docker_sample:test .
docker run --rm docker_sample:test
```