compose_yml icon indicating copy to clipboard operation
compose_yml copied to clipboard

Special volume paths in Docker for Windows

Open agavrilov opened this issue 5 years ago • 0 comments

Docker for Windows allows to specify special paths in volumes sub-section of service section. These paths must NOT be converted to Windows equivalent. Examples:

services:
    test:
        volumes:
            - /dev/shm:/dev/shm
            - /var/run/docker.sock:/var/run/docker.sock
            - "/sys:/sys:ro"
            - "/var/run:/var/run:rw"

agavrilov avatar Dec 08 '20 20:12 agavrilov