You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
516 B
25 lines
516 B
5 years ago
|
version: '2'
|
||
|
services:
|
||
|
zookeeper:
|
||
|
image: zookeeper
|
||
|
restart: always
|
||
|
container_name: zookeeper
|
||
|
ports:
|
||
|
- "2181:2181"
|
||
|
environment:
|
||
|
ZOO_MY_ID: 1
|
||
|
db:
|
||
|
image: postgres
|
||
|
container_name: postgres
|
||
|
environment:
|
||
|
- POSTGRES_USER=test
|
||
|
- POSTGRES_PASSWORD=test
|
||
|
- POSTGRES_DB=dolphinscheduler
|
||
|
ports:
|
||
|
- "5432:5432"
|
||
|
volumes:
|
||
|
- pgdata:/var/lib/postgresql/data
|
||
|
- ./postgres/docker-entrypoint-initdb:/docker-entrypoint-initdb.d
|
||
|
volumes:
|
||
|
pgdata:
|