wiseflow/compose.yaml

21 lines
476 B
YAML
Raw Normal View History

2024-06-19 20:00:53 +08:00
services:
core:
build:
dockerfile: Dockerfile
2024-06-20 15:01:27 +08:00
image: wiseflow:latest
# set following as you need
# environment:
# - TZ=Asia/Shanghai
# - LANG=zh_CN.UTF-8
# - LC_ALL=zh_CN.UTF-8
2024-06-19 20:00:53 +08:00
tty: true
stdin_open: true
entrypoint: bash docker_entrypoint.sh
env_file:
- .env
ports:
- 8090:8090
- 8077:8077
volumes:
2024-06-20 15:01:27 +08:00
- ./${PROJECT_DIR}/pb_data:/app/pb/pb_data
2024-06-19 20:00:53 +08:00
- ./${PROJECT_DIR}:/app/${PROJECT_DIR}