Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
RdeLange authored Nov 4, 2018
1 parent 048bd55 commit a70a407
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,38 @@ Start by building the docker image with a defined name. This can take a while.
```bash
docker build -t robinvision .
```
Start the image and forward port 8080 & 80.

```bash
docker run -d -p 8080:8080 -p 80:80 robinvision
```

### Pull the Docker image

You can also pull the docker image from the Docker Hub registry. There are 2 options, the image with avx and without avx support. This depends on your underlying hardware architecture.

```bash
docker pull rdelange/robinvision_noavx:20181101
docker pull rdelange/robinvision_noavx:20181105
```
or

```bash
docker pull rdelange/robinvision:20181101
docker pull rdelange/robinvision:20181105
```

### Run the Docker image

Start the image and forward port 8080 & 80.

```bash
docker run -d -p 8080:8080 -p 80:80 robinvision
docker run -d -p 8080:8080 -p 80:80 rdelange/robinvision_noavx:20181105
````
or

```bash
docker run -d -p 8080:8080 -p 80:80 rdelange/robinvision:20181105
```



## Features

### Register known faces
Expand Down

0 comments on commit a70a407

Please sign in to comment.