1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/ambari/docker-compose.yml

32 lines
683 B
YAML
Raw Normal View History

2019-09-29 10:40:40 +00:00
version: "3.7"
2019-09-29 00:59:17 +00:00
2019-09-29 10:40:40 +00:00
services:
2019-09-29 23:58:46 +00:00
server:
2019-09-29 10:40:40 +00:00
image: vimagick/ambari
hostname: ambari-server
ports:
- "8080:8080"
2019-09-29 11:26:37 +00:00
- "8440:8440"
- "8441:8441"
2019-09-29 10:40:40 +00:00
volumes:
- ./data/ambari:/etc/ambari-server/conf
2019-09-29 23:58:46 +00:00
- ./data/log:/var/log/ambari-server
2019-09-29 10:40:40 +00:00
extra_hosts:
- ambari-agent1:172.16.1.101
- ambari-agent2:172.16.1.102
- ambari-agent3:172.16.1.103
depends_on:
- postgres
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