mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
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>
23 lines
432 B
YAML
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"
|