Skip to content

Commit

Permalink
Remove Docker section from README
Browse files Browse the repository at this point in the history
They're no longer needed since CI runs tests automatically. The standard testing procedure for Rust crates should already be known and understood by anyone wishing to run them locally as well.
  • Loading branch information
hwittenborn committed Jul 1, 2023
1 parent fef9589 commit 73b7106
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,25 +126,6 @@ dumb_terminal = ["colored/no-color"]
You can use have even finer control by using the
`colored::control::set_override` method.

## Build with Docker

### Install Docker

Use the install instructions located [here](https://docs.docker.com/v17.12/install/)

### Build the Docker image

```docker build -t colored_image .```

### Build the library

```docker run --rm -it -v "$PWD":/src -u `id -u`:`id -g` colored_image /bin/bash -c "cargo build"```

### Test the library

```docker run --rm -it -v "$PWD":/src -u `id -u`:`id -g` colored_image /bin/bash -c "cargo test"```


## Todo

- **More tests ?**: We always welcome more tests! Please contribute!
Expand Down

0 comments on commit 73b7106

Please sign in to comment.