Files
docker-docs/docker-compose.yml
David Lawrence 0350d56176 renaming dockerfiles for autobuilds
Signed-off-by: David Lawrence <david.lawrence@docker.com> (github: endophage)
2016-01-12 18:05:21 -08:00

28 lines
579 B
YAML

notaryserver:
build: .
dockerfile: server.Dockerfile
links:
- notarymysql
- notarysigner
ports:
- "8080"
- "4443:4443"
environment:
- SERVICE_NAME=notary
command: -config=fixtures/server-config.json
notarysigner:
volumes:
- /dev/bus/usb/003/010:/dev/bus/usb/002/010
- /var/run/pcscd/pcscd.comm:/var/run/pcscd/pcscd.comm
build: .
dockerfile: signer.Dockerfile
links:
- notarymysql
command: -config=fixtures/signer-config.json
notarymysql:
volumes:
- notarymysql:/var/lib/mysql
build: ./notarymysql/
ports:
- "3306:3306"