I am beginner in docker. I am trying to create docker container and there is one folder with name 'data'. When container starts then it is expected to create folder inside data with name "logs" and "hive". And these folder should reflect on host machine directory as I am specifying in docker-compose.yml file.
When I went to docker container there file system is like
/usr/src/app # ls ./data
hive logs
/usr/src/app #
Following is my docker-compose configuration for volume
`volumes:
- ./data/:/app/usr/data/`
On my host machine only "data" folder is created. but hive and logs are not created.