docker – Blame information for rev 62

Subversion Repositories:
Rev:
Rev Author Line No. Line
62 office 1 name: rtorrent-rutorrent
2  
3 services:
4 rtorrent-rutorrent:
5 image: ${RTORRENT_RUTORRENT_IMAGE:-crazymax/rtorrent-rutorrent}
6 container_name: ${RTORRENT_RUTORRENT_CONTAINER:-rtorrent-rutorrent}
7 networks:
8 - rtorrent-rutorrent
9 expose:
10 - "${RT_DHT_PORT}/udp"
11 - "${XMLRPC_PORT}"
12 - "${RUTORRENT_PORT}"
13 - "${WEBDAV_PORT}"
14 - "${RT_INC_PORT}"
15 ports:
16 - target: ${RT_DHT_PORT}
17 published: ${RT_DHT_PORT}
18 protocol: udp
19 - target: ${RUTORRENT_PORT}
20 published: ${RUTORRENT_PORT}
21 protocol: tcp
22 - target: ${WEBDAV_PORT}
23 published: ${WEBDAV_PORT}
24 protocol: tcp
25 - target: ${RT_INC_PORT}
26 published: ${RT_INC_PORT}
27 protocol: tcp
28 env_file:
29 - "rtorrent-rutorrent.env"
30 - ".env"
31 volumes:
32 - "rtorrent-rutorrent-data:/data"
33 - "rtorrent-rutorrent-downloads:/downloads"
34 - "rtorrent-rutorrent-passwd:/passwd"
35 ulimits:
36 nproc: 65535
37 nofile:
38 soft: 32000
39 hard: 40000
40 restart: always
41  
42 rtorrent-logs:
43 image: bash
44 container_name: rtorrent-rutorrent-logs
45 command: bash -c 'tail -f /data/rtorrent/log/*.log'
46 network_mode: none
47 depends_on:
48 - rtorrent-rutorrent
49 volumes:
50 - "rtorrent-rutorrent-data:/data"
51 restart: always
52  
53 volumes:
54 rtorrent-rutorrent-data:
55 rtorrent-rutorrent-downloads:
56 rtorrent-rutorrent-passwd:
57  
58 networks:
59 rtorrent-rutorrent:
60 name: rtorrent-rutorrent