8 lines
216 B
Bash
8 lines
216 B
Bash
#!/usr/bin/env sh
|
|
docker run --rm -it \
|
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
|
-v /tmp:/tmp \
|
|
-v $(pwd):/test_input \
|
|
airbyte/source-acceptance-test \
|
|
--acceptance-test-config /test_input
|