You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While very convenient, docker-py is currently unmaintaned (see docker/docker-py#2989), so we might want to consider migrating away from it.
A solution which does not require introducing new dependencies would replacing the docker_client fixture with a wrapper calling docker through subprocess.run.
The text was updated successfully, but these errors were encountered:
Another point against docker-py is tag updating.
docker tags be updated automatically Dependabot or Renovate, when specified in docker-compose.yml or Dockerfile files, but since we define tags in the code, these tools won't work.
Migrating to pytest-docker could be a solution, although it could be tricky to only bring up specific containers.
While very convenient,
docker-py
is currently unmaintaned (see docker/docker-py#2989), so we might want to consider migrating away from it.A solution which does not require introducing new dependencies would replacing the
docker_client
fixture with a wrapper callingdocker
throughsubprocess.run
.The text was updated successfully, but these errors were encountered: