Skip to content

Commit

Permalink
Update README with workaround for entrypoint option
Browse files Browse the repository at this point in the history
Until buildkite-plugins#138 is resolved (possibly by buildkite-plugins#132), this documentation
update should save users some pain when trying to override or
disable the default entrypoint for a container.
  • Loading branch information
bunsenmcdubbs committed Sep 21, 2021
1 parent a756a5f commit 4ea0959
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 @@ -161,9 +161,9 @@ Default: `false`

### `entrypoint` (optional, string or boolean)

Override the image’s default entrypoint, and defaults the `shell` option to `false`. See the [docker run --entrypoint documentation](https://docs.docker.com/engine/reference/run/#entrypoint-default-command-to-execute-at-runtime) for more details. Set it to `false` to disable the default entrypoint for the image.
Override the image’s default entrypoint, and defaults the `shell` option to `false`. See the [docker run --entrypoint documentation](https://docs.docker.com/engine/reference/run/#entrypoint-default-command-to-execute-at-runtime) for more details. Set it to `""` (empty string) to disable the default entrypoint for the image (you may also need to use this plugin's `command` option instead of the top-level `command` option - see [Issue 138](https://github.com/buildkite-plugins/docker-buildkite-plugin/issues/138) for more information).

Example: `/my/custom/entrypoint.sh`
Example: `/my/custom/entrypoint.sh`, `""`

### `environment` (optional, array)

Expand Down

0 comments on commit 4ea0959

Please sign in to comment.