grim/convey

Fix bad value in run attribute documentation.
hostnames
2017-10-04, Eric Fritz
f079407443a2
Fix bad value in run attribute documentation.
  • +1 -1
    REFERENCE.md
  • --- a/REFERENCE.md Wed Oct 04 15:13:49 2017 -0500
    +++ b/REFERENCE.md Wed Oct 04 15:16:32 2017 -0500
    @@ -386,7 +386,7 @@
    | ----------- | -------- | ---------- | ----------- |
    | command | | | The command to run in the container. This is only necessary if the image does not provide a command by default. |
    | detach | | false | Will run the container in the background allowing other tasks to run. The container will be cleaned up on exit. If the image has a HEALTHCHECK specified in the Dockerfile, convey will wait until it is healthy before proceeding. |
    -| network | | | Will set the --network-alias argument in the docker run command. This is generally only useful to connect to service containers. |
    +| hostname | | | Will set the --network-alias argument in the docker run command. This is generally only useful to connect to service containers. |
    | entrypoint | | | The entrypoint to use for the container. This is only necessary if the image does not provide one by default. |
    | environment | | | A list of environment variables to set. The should be specified in a `NAME` or `NAME=VALUE` format. If no value is provided, the value of the variable from the host will be provided if it is available. |
    | healthcheck | | | See the HealthCheck attributes below. |