atix0/transmission
Transmission server for ARMv7.
36
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.
Alpine 3.21 base
Transmission CLI
Added transmission-web-control as default web interface. Github link
/transmission/config - Config and torrent files /downloads - downloaded files
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
You can edit the settings in the settings.json file in the config folder.
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
2025.01.09 Update Alpine to 3.21.2
2024.12.12 Update Alpine to 3.21
2024.10.22 First Version
docker pull atix0/transmission