25 lines
		
	
	
		
			469 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			469 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: "3.7"
 | 
						|
 | 
						|
services:
 | 
						|
  rsync:
 | 
						|
    image: harbor.boyachain.cn:20443/general/rsync
 | 
						|
    container_name: rsync
 | 
						|
    restart: "on-failure"
 | 
						|
    stop_grace_period: 1m
 | 
						|
    ports:
 | 
						|
    - 873:873
 | 
						|
    volumes:
 | 
						|
    - type: bind
 | 
						|
      source: ./rsync/rsyncd.conf
 | 
						|
      target: /etc/rsyncd.conf
 | 
						|
    - type: bind
 | 
						|
      source: ./rsync/log
 | 
						|
      target: /var/log/rsync
 | 
						|
    - type: bind
 | 
						|
      source: /data1
 | 
						|
      target: /d1
 | 
						|
    - type: bind
 | 
						|
      source: /data2
 | 
						|
      target: /d2
 | 
						|
 |