| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
New capability of "seeding" a db container, by running a database-specific command or twelve to inject data (DB schema or sample data). Relies on the image's support for /docker-entrypoint-initdb.d/ folder
Stop waiting for connection, which requires ready container. Instead copy data first thing.
|
Updated to use "transferable" like kafka does, which makes this support remote docker engines! |
Sorry, something went wrong.
🤖 I have created a release *beep* *boop* --- ## [4.4.1](testcontainers-v4.4.0...testcontainers-v4.4.1) (2024-05-14) ### Bug Fixes * Add memcached container ([#322](#322)) ([690b9b4](690b9b4)) * Add selenium video support [#6](#6) ([#364](#364)) ([3c8006c](3c8006c)) * **core:** add empty _configure to DockerContainer ([#556](#556)) ([08916c8](08916c8)) * **core:** remove version from compose tests ([#571](#571)) ([38946d4](38946d4)) * **keycloak:** add realm imports ([#565](#565)) ([f761b98](f761b98)) * **mysql:** Add seed support in MySQL ([#552](#552)) ([396079a](396079a)) * url quote passwords ([#549](#549)) ([6c5d227](6c5d227)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
| Back | FazBrowse Home | New Git URL |
Ref #541.
New capability of "seeding" a db container using image's support for /docker-entrypoint-initdb.d/ folder.
Using the "transferable" system, borrowed from Kafka.
Updates DbContainer to have a new (NOOP-default) _transfer_seed() method, run after _start() and before _connect(), to allow the folder transfer.
Currently implemented only in MySQL, but extensible to others that use the /docker-entrypoint-initdb.d/ system.