Very quick tip on how to identify the directory from which a docker compose command was launched (as the standard docker ps output doesn’t show it).

# Retrieve container ID
docker ps 

docker inspect \
  --format='{{ index .Config.Labels "com.docker.compose.project.working_dir" }}' \
  0e6194178cf0
/Users/olivier/Dev/Leandeep/Rust/test_app/leptos_pg