How I can mount folder of the host OS?

How I can mount folder of the host OS?
I want to see it inside the container.
(My host OS is Linux)

Thank’s

lookup volumes on the help docs for docker-compose.

it goes something like this:

volumes:
  - ./dir:/path/to/dir

That would need to be added to the container you want your folder to be mounted in. it is configured in the docker-compose.yml file. then just re/start the container.

Thank’s :slight_smile: It’s work