Skip to content

Issues⚓︎

Run testcontainers with local docker desktop⚓︎

To run test supported by testcontainers with local docker desktop, the environment variable DOCKER_HOST should be set to unix:///home/[user]/.docker/desktop/docker.sock, where [user] is your user name.

The value for DOCKER_HOST in CLI is still unix:///var/run/docker.sock.

Address DeprecationWarning of the mkdocs-jupyter plugin⚓︎

While using mkdocs serve you might get warning as:

DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs given by the platformdirs library. To remove this warning and see the appropriate new directories, set the environment variable JUPYTER_PLATFORM_DIRS=1 and then run jupyter --paths.

To address this warning temporarily for every session:

export JUPYTER_PLATFORM_DIRS=1
mkdocs serve
$env:JUPYTER_PLATFORM_DIRS=1
mkdocs serve

Or permanently by saving the variable value into your conda environment

conda activate your_env
conda env config vars set JUPYTER_PLATFORM_DIRS=1 #(1)!

  1. reactivate your_env would be needed

Other issues⚓︎

Other issues are listed here