Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated readme based on new config-file location handling #37

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,15 @@ The following example command attaches the directory and runs EIB:
```shell
podman run --rm -it \
-v $IMAGE_DIR:/eib eib:dev /bin/eib \
-config-file /eib/$CONFIG_FILE.yaml \
-config-file $CONFIG_FILE.yaml \
-config-dir /eib \
-build-dir /eib/_build
```

* `-v` - Used to mount a local directory (in this example, the value of $IMAGE_DIR) into the EIB container at `/eib`.
* `-config-file` - Specifies which image configuration file to build. **Note:** This is currently the full path to the
file relative to inside the container. In this example, since the volume was mounted at `/eib`, that path information
needs to be included in the CLI argument.
* `-config-file` - Specifies which image configuration file to build. The path to this file will be relative to
the image configuration directory. If the configuration file is in the root of the configuration directory, simply
specify the name of the configuration file
* `-config-dir` - Specifies the image configuration directory. Keep in mind that this is relative to the running
container, so its value must match the mounted volume.
* `-build-dir` - (optional) If unspecified, EIB will use a temporary directory inside the container for
Expand Down