1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01: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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

2
Cargo.lock generated
View File

@ -2331,7 +2331,7 @@ checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
name = "docker_sample"
version = "0.1.0"
dependencies = [
"actix-web 3.3.3",
"actix-web 4.0.0-beta.21",
"env_logger 0.9.0",
"log",
]

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
```