16 lines
584 B
YAML
16 lines
584 B
YAML
services:
|
||
svn-log-tool:
|
||
build:
|
||
context: .
|
||
dockerfile: Dockerfile
|
||
args:
|
||
# Docker 镜像加速(使用 DOCKER_REGISTRY_MIRROR 传递,国内可选阿里云,例如 registry.cn-hangzhou.aliyuncs.com/library,不能带 https://)
|
||
# 内部/开发用途,推荐通过 make fast-up 使用快速构建
|
||
REGISTRY_MIRROR: ${DOCKER_REGISTRY_MIRROR:-docker.1ms.run/library}
|
||
FAST_BUILD: ${FAST_BUILD:-false}
|
||
container_name: svn-log-tool
|
||
network_mode: host
|
||
volumes:
|
||
- ./outputs:/app/outputs
|
||
restart: unless-stopped
|