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:
@ -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"
|
||||
|
@ -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
|
||||
```
|
||||
|
Reference in New Issue
Block a user