Skip to content

Commit

Permalink
fix typo in airbyte specification docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sherifnada committed Apr 9, 2021
1 parent db119d0 commit 838d85d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/architecture/airbyte-specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ read(Config, AirbyteCatalog, State) -> Stream<AirbyteMessage>
The first argument passed to the image must be the command \(e.g. `spec`, `check`, `write`\). Additional arguments can be passed after the command. Note: The system running the container will handle mounting the appropriate paths so that the config files are available to the container. This code snippet does not include that logic.

```text
docker run --rm -i <source-image-name> spec
docker run --rm -i <source-image-name> check --config <config-file-path>
cat <&0 | docker run --rm -i <source-image-name> write --config <config-file-path> --catalog <catalog-file-path>
docker run --rm -i <destination-image-name> spec
docker run --rm -i <destination-image-name> check --config <config-file-path>
cat <&0 | docker run --rm -i <destination-image-name> write --config <config-file-path> --catalog <catalog-file-path>
```

The `write` command will consume `AirbyteMessage`s from stdin.
Expand Down

0 comments on commit 838d85d

Please sign in to comment.