github.com/docker/docker-ce@v17.12.1-ce-rc2+incompatible/components/cli/e2e/compose-env.yaml (about)

     1  version: '2.1'
     2  
     3  services:
     4    registry:
     5      image: 'registry:2'
     6  
     7    engine:
     8        image: 'docker:${TEST_ENGINE_VERSION:-edge-dind}'
     9        privileged: true
    10        command: ['--insecure-registry=registry:5000']
    11  
    12    notary-server:
    13        image: 'notary:server-0.4.2'
    14        ports:
    15          - 4443:4443
    16        volumes:
    17         - notary-fixtures:/fixtures
    18        command: ['notary-server', '-config=/fixtures/notary-config.json']
    19  
    20  volumes:
    21    notary-fixtures: {}