wd-smebiz/docker-compose.yml

23 lines
576 B
YAML
Raw Normal View History

2023-08-02 10:18:36 +08:00
version: '3.8'
services:
wd-smebiz:
build:
context: .
dockerfile: Dockerfile
volumes:
# 挂载日报代码
- ../wd-smebiz:/home/wd-smebiz
# 挂载静态文件目类
- /home/file/wd-smebiz/static_data:/home/wd-smebiz/static_data
- /home/file/wd-smebiz/static/upload_files:/home/wd-smebiz/static/upload_files
ports:
2023-08-02 10:19:38 +08:00
- "8008:8008"
2023-08-02 10:18:36 +08:00
networks:
- app
command:
bash -c "cd /home/wd-smebiz && python3 main.py"
environment:
- TZ=Asia/Shanghai
networks:
app:
external: true