Files
svn-log-tool/docker-compose.yml
T

16 lines
584 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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