-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (50 loc) · 1.68 KB
/
docker-compose.yml
File metadata and controls
53 lines (50 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
version: '3.9'
services:
rclone-anime: &default
image: anon0511/docker-rclone:latest
restart: unless-stopped
container_name: rclone-anime
environment:
- "to_path=anime:"
- from_path=/mnt/google/anime/
- TZ=Europe/Berlin
- intvl=60
- minage=120
- JOB=move
- OPTS=--delete-empty-src-dirs --fast-list --dropbox-chunk-size 128M --tpslimit 12 --tpslimit-burst 12 --transfers 6 --stats-one-line --filter='- *.!qB'
volumes:
- /mnt/google/anime:/mnt/google/anime
- /home/user/.config/rclone:/var/rclone/.config/rclone
- /home/rclone:/rclone
rclone-movies:
<<: *default
restart: unless-stopped
container_name: rclone-movies
environment:
- "to_path=movies:"
- from_path=/mnt/google/movies/
- TZ=Europe/Berlin
- intvl=60
- minage=120
- JOB=move
- OPTS=--delete-empty-src-dirs --fast-list --dropbox-chunk-size 128M --tpslimit 12 --tpslimit-burst 12 --transfers 6 --stats-one-line --filter='- *.!qB'
volumes:
- /mnt/google/movies:/mnt/google/movies
- /home/user/.config/rclone:/var/rclone/.config/rclone
- /home/rclone:/rclone
rclone-tv:
<<: *default
restart: unless-stopped
container_name: rclone-tv
environment:
- "to_path=tv:"
- from_path=/mnt/google/tv/
- TZ=Europe/Berlin
- intvl=60
- minage=120
- JOB=move
- OPTS=--delete-empty-src-dirs --fast-list --dropbox-chunk-size 128M --tpslimit 12 --tpslimit-burst 12 --transfers 6 --stats-one-line --filter='- *.!qB'
volumes:
- /mnt/google/tv:/mnt/google/tv
- /home/user/.config/rclone:/var/rclone/.config/rclone
- /home/rclone:/rclone