17 lines
415 B
YAML
17 lines
415 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
ai-code-review:
|
|
# image: ai-code-review:lasted
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: ai-code-review
|
|
ports:
|
|
- "53321:53321"
|
|
# volumes:
|
|
# # 如果需要使用自定义配置文件,取消下面的注释并修改路径
|
|
# - ./config.yaml:/app/config.yaml
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=Asia/Shanghai |