Skip to content

Commit

Permalink
make optional args more concise
Browse files Browse the repository at this point in the history
  • Loading branch information
devkelley committed Dec 7, 2023
1 parent 5bc6606 commit d24aded
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions container/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ To run the service in a Docker container:
Dockerfile:

```shell
docker build -t <image_name> -f <Dockerfile> (optional: --build-arg=APP_NAME=<project name>) (optional: --build-arg=FEATURES="<module name(s)>") .
docker build -t <image_name> -f <Dockerfile> [--build-arg=APP_NAME=<project name>] [--build-arg=FEATURES="<module name(s)>"] .
```

>Note: The `FEATURES` build arg only applies to the dockerfiles for In-Vehicle Digital Twin Service.
Expand Down Expand Up @@ -175,7 +175,7 @@ To run the service in a Podman container:
Dockerfile:

```shell
podman build -t <image_name> -f <Dockerfile> (optional: --build-arg=APP_NAME=<project name>) (optional: --build-arg=FEATURES="<module name(s)>") .
podman build -t <image_name> -f <Dockerfile> [--build-arg=APP_NAME=<project name>] [--build-arg=FEATURES="<module name(s)>"] .
```

>Note: The `FEATURES` build arg only applies to the dockerfiles for In-Vehicle Digital Twin Service.
Expand Down

0 comments on commit d24aded

Please sign in to comment.