GoogleCloudPlatform / datacatalog-connectors-bi

Sample code with integration between Data Catalog and BI data sources.
Apache License 2.0
32 stars 16 forks source link

Add the Docker-related files #83

Closed ricardolsmendes closed 3 years ago

ricardolsmendes commented 3 years ago

- What I did Added files that make it easier for users to run the connector using Docker.

- How I did it Added the Dockerfile and .dockerignore files.

- How to verify it Build a Docker image and run the connector using it:

docker build --rm --tag sisense2datacatalog .
docker run --rm --tty -v YOUR-CREDENTIALS_FILES_FOLDER:/data \
  sisense2datacatalog \
  --sisense-server $SISENSE2DC_SISENSE_SERVER \
  --sisense-username $SISENSE2DC_SISENSE_USERNAME \
  --sisense-password $SISENSE2DC_SISENSE_PASSWORD \
  --datacatalog-project-id $SISENSE2DC_DATACATALOG_PROJECT_ID \
  [--datacatalog-location-id $SISENSE2DC_DATACATALOG_LOCATION_ID]

More docs on how to run the connector are coming soon.

- Description for the changelog Added files that make it easier for users to run the connector using Docker.

PS: This PR is part of the effort to deliver feature #70.