Skip to content

Commit

Permalink
Remove volume from dockerfile (#133)
Browse files Browse the repository at this point in the history
Setting the volumn in the dockerfile is causing issues during local development where the volumn gets created and then not updated when you reintrospect or change the configuration.json file.
  • Loading branch information
codedmart authored Dec 5, 2024
1 parent 5a269a5 commit 4583273
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ This changelog documents the changes between release versions.
### Fixed

- The connector previously used Cloudflare's DNS resolver. Now it uses the locally-configured DNS resolver. ([#125](https://github.com/hasura/ndc-mongodb/pull/125))
- Fixed connector not picking up configuration changes when running locally using the ddn CLI workflow. ([#133](https://github.com/hasura/ndc-mongodb/pull/133))

#### Managing native queries with the CLI

Expand Down
3 changes: 0 additions & 3 deletions nix/docker-connector.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ let
"OTEL_SERVICE_NAME=mongodb-connector"
"OTEL_EXPORTER_OTLP_ENDPOINT=${default-otlp-endpoint}"
];
Volumes = {
"${config-directory}" = { };
};
} // extraConfig;
};
in
Expand Down

0 comments on commit 4583273

Please sign in to comment.