| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
…refactor * fix the docs so that we can mark DbContainer as deprecated for removal * add a warning to ServerContainer just in case it is actually possible to move it out of core * use glob for modules/index.rst * clean up the table of contents so that deprecated classes do not appear on the front page * prepare to refactor the dockerimage stuff with the same class name/structure as Java (DockerImageName, ImageFromDockerfile)
|
additionally, had to make httpx not optional as it was referenced in a doctest |
Sorry, something went wrong.
|
This is nice, I fully understand the needs to actually be using "DockerImage", my implementation was wrong to use the image file directly.. public GenericContainer dslContainer = new GenericContainer(
new ImageFromDockerfile()
.withFileFromString("folder/someFile.txt", "hello") |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
some additional thoughts, maybe ServerContainer direction should be clarified - its for FastAPI/Lambda module - in the class's doc string.
Additionally I want to make DockerImage and image as string more interchangeable, not just in servercontainer but everywhere, similar to how python has os.PathLike we should have DockerImageName type which includes DockerImage and str - https://java.testcontainers.org/features/creating_images/