d8ab687c
Liu Haoyu
ftp文件监听服务创建
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
version: "3"
services:
ftpWatcher:
image: ftp-watcher:1.0
container_name: ftpWatcher
build:
context: ./
dockerfile: Dockerfile
volumes:
- ./data:/data
environment:
- udp_server_ip=192.168.60.67
- udp_server_port=8089
- minio_endpoint=http://192.168.10.58:6000
- minio_access_key=minioadmin
- minio_secret_key=minioadmin
- bucket_name=togoftp
|