Vue lecture

Run Flood (and torrent clients) in containers · jesec/flood · Discussion #120 · GitHub

Run Flood (and torrent clients) in containers using Docker Compose configuration:

services:
  flood:
    hostname: flood
    image: jesec/flood
    user: 1000:1001
    restart: unless-stopped
    command: --port 3001 --allowedpath /data
    environment:
      HOME: /config
    volumes:
      - /home/jc/dlconfig:/config
      - /mnt/data0:/data
    ports:
      - 127.0.0.1:3001:3001

  rtorrent:
    hostname: rtorrent
    image: jesec/rtorrent
    user: 1000:1001
    restart: unless-stopped
    command: -o network.port_range.set=6881-6881,system.daemon.set=true
    environment:
      HOME: /config
    volumes:
      - /home/jc/dlconfig:/config
      - /mnt/data0:/data
    ports:
      - 0.0.0.0:6881:6881

Permalink
  •  

A Definitive Browser Comparison : r/browsers

Une discussion sur Reddit a tourné en un énorme Google Spreadsheet contenant beaucoup d'informations permettant de se faire une idée précise sur le meilleur navigateur pour nos besoins. Contient aussi une comparaison d'autres outils (emails, IA, etc.).


Permalink
  •