Files
sftp-manager/docker-compose.yml

16 lines
484 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.
# SFTP Manager - 拉代码后执行 run.sh / run.bat 即可运行
services:
sftp-manager:
build: .
image: sftp-manager:latest
container_name: sftp-manager
ports:
- "48081:48081"
volumes:
# 默认映射到用户家目录Linux/Mac 为 $HOME未设置时为当前目录
- ${HOME:-.}/sftp-manager/data:/app/data
- ${HOME:-.}/sftp-manager/logs:/app/logs
environment:
- SPRING_PROFILES_ACTIVE=prod
restart: unless-stopped