Jb DOYON
Jb DOYON
Makes sense! Just to be clear, the only convenient way I see of exposing the `/docker-entrypoint-initdb.d/` folder is to mount it as `.with_volume_mapping()` before the container is created in docker,...
> I'm aiming for: > > ```python > with MysqlContainer(seed="db/seeds/"): > # equivalent to: > container.with_volume_mapping("db/seeds/", "/docker-entrypoint-initdb.d/") > ``` Implemented in #552 for MySQL, to further this discussion with specific...
So, I was curious about `put_archive` and the "transferable" system, so I implemented it experimentally, and ~~it didn't work:~~ ~~The files did make it to the folder, but the tables...
Small bump: Implementation of the proof of concept of MySQL in #552 is using transferable now (as stated preference) and the feature was agreed to be of (vague hehe) interest....
Wow, thank you for merging that PR! (I expected more of a fight, haha) I feel like our Postgres friends would be missing out on this, so I'll try to...
See #576 which fixes the doctest of mysql, which acted as documentation for the feature, and adds the same feature to postgres. I'm interested in better documentation for the feature,...
Bump because I don't know what to do: I've linked PR #4818 that should fix this issue, but it's been stagnant for a month with no review or interaction. I'm...
## Reproduction steps: Create a simple template: ```bash mkdir gitty-template && cd gitty-template echo '{"project_slug": "my-lovely-project"}' > cookiecutter.json mkdir "{{cookiecutter.project_slug}}/" echo "# Readme for {{cookiecutter.project_slug}}" > "{{cookiecutter.project_slug}}/README.md" mkdir hooks ```...
Bump: Running a podman container as systemd job (in my user slice), but the container keeps crashing within a second of start (despite podman run locally working fine outside systemd)...
Just tested the provided sample parses, worked great, that's this issue solved for me! I'd even suggest shipping it (somehow) in sphinx-autodoc2 if we can.