Created
April 2, 2021 20:40
-
-
Save acmiyaguchi/546a66b0a8f73c05d9c863f4f8afce3a to your computer and use it in GitHub Desktop.
bigquery-etl docker-compose file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.8" | |
services: | |
app: | |
build: | |
context: . | |
volumes: | |
- ./:/app | |
- ${CLOUDSDK_CONFIG:-~/.config/gcloud}/:/tmp/.config/gcloud | |
environment: | |
- CLOUDSDK_CONFIG=/tmp/.config/gcloud | |
- CLOUDSDK_CORE_PROJECT=bigquery-etl-integration-test | |
- GOOGLE_PROJECT_ID=bigquery-etl-integration-test | |
command: pytest tests |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment