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.
29 lines
787 B
29 lines
787 B
version: "3.8"
|
|
networks:
|
|
default:
|
|
driver: bridge
|
|
ipam:
|
|
config:
|
|
- subnet: 172.172.0.0/24
|
|
services:
|
|
doris:
|
|
image: doris:0.12.0
|
|
restart: always
|
|
environment:
|
|
TZ: "Asia/Shanghai"
|
|
volumes:
|
|
- ./conf/fe.conf:/opt/fe/conf/fe.conf
|
|
- ./log/fe:/opt/fe/log
|
|
- ./data/fe/doris-meta:/opt/fe/doris-meta
|
|
- ./conf/be.conf:/opt/be/conf/be.conf
|
|
- ./data/be/storage:/opt/be/storage
|
|
ports:
|
|
- 8081:8081
|
|
- 8030:8030
|
|
- 9030:9030
|
|
- 9050:9050
|
|
command: bash -c "/opt/fe/bin/start_fe.sh & /opt/be/bin/start_be.sh"
|
|
networks:
|
|
default:
|
|
ipv4_address: 172.172.0.172
|