2019-09-29 02:59:17 +02:00
|
|
|
ambari:
|
|
|
|
image: vimagick/ambari
|
|
|
|
hostname: ambari-server
|
|
|
|
ports:
|
|
|
|
- "8080:8080"
|
|
|
|
volumes:
|
|
|
|
- ./data/ssh:/root/.ssh
|
|
|
|
- ./data/ambari:/etc/ambari-server/conf
|
2019-09-29 05:28:57 +02:00
|
|
|
links:
|
|
|
|
- postgres
|
2019-09-29 02:59:17 +02:00
|
|
|
extra_hosts:
|
|
|
|
- ambari-agent1:172.16.1.101
|
|
|
|
- ambari-agent2:172.16.1.102
|
|
|
|
- ambari-agent3:172.16.1.103
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
postgres:
|
|
|
|
image: postgres:alpine
|
|
|
|
volumes:
|
|
|
|
- /data/postgres:/var/lib/postgresql/data
|
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=ambari
|
|
|
|
- POSTGRES_PASSWORD=ambari
|
|
|
|
- POSTGRES_DB=ambari
|
|
|
|
restart: unless-stopped
|