Is there any way to share a .bash_history volume with a docker container so that everytime I go into a shell I have my bash history available for scrolling thro
.bash_history
In your docker-compose.override.yml:
version: '2' services: whatever: … volumes: - … - ~/.bash_history:/root/.bash_history