Files
docker-docs/docker-compose.yml
Richard Scothern df18a541e2 Fix the staging deployment.
Add a service name and ephemeral ports to notary server.
Remove certs as TLS is terminated in the ELB.

Signed-off-by: Richard Scothern <richard.scothern@gmail.com>
2015-07-16 09:50:52 -07:00

23 lines
432 B
YAML

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