copy files from docker container to host, or mirror a folder
I have this docker-compose: version: "3.9" services: myserver: image: <some image> restart: always volumes: - ./res:/tmp/configs - ./myfolder:/tmp/logs Should I expect to see the files that are in /tmp/logs inside the container, in the host folder 'myfolder'? 'myfolder' is empty…