docker – Blame information for rev 62

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