Tests about Docker volumes and associated rights
Create a venv and activate it:
python -m venv venv
source venv/bin/activateInstall dependencies:
pip install -r requirements.txtLaunch tests:
pytest -vI was facing an issue with a Redis container that could not save its database because it cannot write its dump.rdb into the volume.
I was wondering if it was due to Docker Compose or Docker Swarm. I was wondering if it was due to "standard" Docker volume or to "sub-directory" Docker volume.
So I make tests for each case in this repo.