Skip to content

Commit

Permalink
Merge pull request eclipse#37 from boschresearch/fix/docker-image-tag…
Browse files Browse the repository at this point in the history
…-jenkins

Fix docker image tagging in  jenkins
  • Loading branch information
Robert Hoettger committed Aug 25, 2020
2 parents 66e8e54 + f0eb010 commit c8b8a84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,14 +280,14 @@ sudo docker build . --build-arg http_proxy=$http_proxy --build-arg https_proxy=
Once Docker image is built, we can run it by using the run command:

```
sudo docker run -it -v $HOME/kuksaval.config:/config -e LOG_LEVEL=ALL amd64/kuksa-val:0.1.1
sudo docker run -it -v $HOME/kuksaval.config:/config -p 127.0.0.1:8090:8090 -e LOG_LEVEL=ALL amd64/kuksa-val:0.1.1
```
where `$HOME/kuksaval.config` is a directory on your host machine containing the KUKSA.VAL configuration. The directory can be empty, then it will be populated with an exmple configuration during start.

The environment variable `KUKSAVAL_OPTARGS` can be used to add arbitrary command line arguments e.g.

```
sudo docker run -it -v $HOME/kuksaval.config:/config -e LOG_LEVEL=ALL -e KUKSAVAL_OPTARGS="--insecure" amd64/kuksa-val:0.1.1
sudo docker run -it -v $HOME/kuksaval.config:/config -p 127.0.0.1:8090:8090 -e LOG_LEVEL=ALL -e KUKSAVAL_OPTARGS="--insecure" amd64/kuksa-val:0.1.1
```

Expand Down

0 comments on commit c8b8a84

Please sign in to comment.