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.
24 lines
516 B
24 lines
516 B
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:
|
|
|