22 lines
378 B
YAML
22 lines
378 B
YAML
version: '2'
|
|
|
|
services:
|
|
uaa:
|
|
image: pcfseceng/uaa
|
|
volumes:
|
|
- ./uaa.yml:/uaa/uaa.yml
|
|
ports:
|
|
- 8080:8080
|
|
restart: always
|
|
|
|
credhub:
|
|
image: ampersand8/credhub
|
|
ports:
|
|
- "9000:9000"
|
|
links:
|
|
- uaa:uaa
|
|
depends_on:
|
|
- uaa
|
|
environment:
|
|
UAA_URL: http://localhost:8080/uaa
|
|
UAA_INTERNAL_URL: http://uaa:8080/uaa |