Docker and .bash_history

前端 未结 6 1810
感动是毒
感动是毒 2020-12-30 19:58

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

6条回答
  •  天命终不由人
    2020-12-30 20:33

    In your docker-compose.override.yml:

    version: '2'
    services:
      whatever:
        …
        volumes:
          - …
          - ~/.bash_history:/root/.bash_history
    

提交回复
热议问题