2017-08-15 16:59:43 -04:00
|
|
|
version: '2.1'
|
2017-08-14 15:47:06 -04:00
|
|
|
|
|
|
|
services:
|
|
|
|
registry:
|
|
|
|
image: 'registry:2'
|
|
|
|
|
|
|
|
engine:
|
|
|
|
image: 'docker:${TEST_ENGINE_VERSION:-edge-dind}'
|
|
|
|
privileged: true
|
|
|
|
command: ['--insecure-registry=registry:5000']
|
2017-10-06 17:46:02 -04:00
|
|
|
|
|
|
|
notary-server:
|
2018-05-17 07:11:59 -04:00
|
|
|
build:
|
|
|
|
context: ./testdata
|
|
|
|
dockerfile: Dockerfile.notary-server
|
2017-10-06 17:46:02 -04:00
|
|
|
ports:
|
|
|
|
- 4443:4443
|
|
|
|
command: ['notary-server', '-config=/fixtures/notary-config.json']
|
2018-11-07 07:42:43 -05:00
|
|
|
evil-notary-server:
|
|
|
|
build:
|
|
|
|
context: ./testdata
|
|
|
|
dockerfile: Dockerfile.evil-notary-server
|
|
|
|
ports:
|
|
|
|
- 4444:4443
|
|
|
|
command: ['notary-server', '-config=/fixtures/notary-config.json']
|
|
|
|
|