atix0/transmission

By atix0

Updated about 2 months ago

Transmission server for ARMv7.

Image
Web Servers

36

Transmission Bittorrent Client Docker Image for ARMv7

This image allows you to run an headless Bittorrent client on your maschine easily.

Since I couldn't find an up-to-date image of armv7, I made it.

Sorry in advance, this is my first Docker Image.

Details

Alpine 3.21 base
Transmission CLI
Added transmission-web-control as default web interface. Github link

Installation

Volumes

/transmission/config - Config and torrent files /downloads - downloaded files

Ports

9091 is the port for web interface. You can go to http://machine_ip:9091 to display interface

51413 and 51413/udp are the port for torrents

Config

You can edit the settings in the settings.json file in the config folder.

Compose example

services:
  transmission:
    image: atix0/transmission
    container_name: transmission
    environment:
      - TZ=Europe/Budapest
    volumes:
      - ./config:/transmission/config\
      - ./media:/downloads
    ports:
      - 9091:9091
      - 51413:51413
      - 51413:51413/udp
    restart: unless-stopped

Version History

2025.01.09 Update Alpine to 3.21.2
2024.12.12 Update Alpine to 3.21
2024.10.22 First Version

Docker Pull Command

docker pull atix0/transmission