github.com/kaisenlinux/docker.io@v0.0.0-20230510090727-ea55db55fac7/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:-stable-dind}' 9 privileged: true 10 command: ['--insecure-registry=registry:5000'] 11 environment: 12 - DOCKER_TLS_CERTDIR= 13 14 notary-server: 15 build: 16 context: ./testdata 17 dockerfile: Dockerfile.notary-server 18 ports: 19 - 4443:4443 20 command: ['notary-server', '-config=/fixtures/notary-config.json'] 21 evil-notary-server: 22 build: 23 context: ./testdata 24 dockerfile: Dockerfile.evil-notary-server 25 ports: 26 - 4444:4443 27 command: ['notary-server', '-config=/fixtures/notary-config.json'] 28