emk / compose_yml

WIP: Read and write docker-compose.yml files using Rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Special volume paths in Docker for Windows

agavrilov opened this issue · 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"