mirror of
https://github.com/casjaysdevdocker/transmission
synced 2026-05-15 02:47:45 -04:00
fe09bb3b6964f9b778868faf9db8f2d5870d8221
Some checks failed
release-tag / release-image (push) Has been cancelled
Update the embedded entrypoint copies in rootfs/ to match the upstream template change. Internal state files renamed to dotfiles so they're not matched by `/run/*.pid` cleanup globs: - /run/init.d/entrypoint.pid -> /run/.entrypoint.pid - /run/no_exit.pid -> /run/.no_exit.pid - /run/backup.pid -> /run/.backup.pid - /run/__start_init_scripts.pid -> /run/.start_init_scripts.pid Per-service PIDs in /run/init.d/ are unchanged. rootfs/usr/local/bin/entrypoint.sh rootfs/usr/local/etc/docker/env/default.sample rootfs/usr/local/etc/docker/env/zz-entrypoint.sh rootfs/usr/local/etc/docker/functions/entrypoint.sh rootfs/usr/local/share/template-files/config/env/default.sample rootfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
👋 Welcome to transmission 🚀
Transmission is designed for easy, powerful use. Transmission has the features you want from a BitTorrent client:
encryption, a web interface, peer exchange, magnet links, DHT, µTP, UPnP and NAT-PMP port forwarding, webseed support,
watch directories, tracker editing, global and per-torrent speed limits, and more.
Install my system scripts
sudo bash -c "$(curl -q -LSsf "https://github.com/systemmgr/installer/raw/main/install.sh")"
sudo systemmgr --config && sudo systemmgr install scripts
Automatic install/update
dockermgr update transmission
Install and run container
mkdir -p "$HOME/.local/share/srv/docker/transmission/volumes"
git clone "https://github.com/dockermgr/transmission" "$HOME/.local/share/CasjaysDev/dockermgr/transmission"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/transmission/rootfs/." "$HOME/.local/share/srv/docker/transmission/volumes/"
docker run -d \
--restart always \
--privileged \
--name casjaysdevdocker-transmission \
--hostname transmission \
-e TZ=${TIMEZONE:-America/New_York} \
-v /mnt/downloads:/data/downloads:z \
-v $HOME/.local/share/srv/docker/casjaysdevdocker-transmission/volumes/data:/data:z \
-v $HOME/.local/share/srv/docker/casjaysdevdocker-transmission/volumes/config:/config:z \
-p 0.0.0.0:9091:9091 \
-p 0.0.0.0:51413:51413 \
-p 0.0.0.0:51413:51413/udp \
casjaysdevdocker/transmission:latest
via docker-compose
version: "2"
services:
ProjectName:
image: casjaysdevdocker/transmission
container_name: casjaysdevdocker-transmission
environment:
- TZ=America/New_York
- HOSTNAME=transmission
volumes:
- /mnt/downloads:/data/downloads:z
- $HOME/.local/share/srv/docker/casjaysdevdocker-transmission/volumes/data:/data:z
- $HOME/.local/share/srv/docker/casjaysdevdocker-transmission/volumes/config:/config:z
ports:
- 0.0.0.0:9091:9091
- 0.0.0.0:51413:51413
- 0.0.0.0:51413:51413/udp
restart: always
Get source files
dockermgr download src casjaysdevdocker/transmission
OR
git clone "https://github.com/casjaysdevdocker/transmission" "$HOME/Projects/github/casjaysdevdocker/transmission"
Build container
cd "$HOME/Projects/github/casjaysdevdocker/transmission"
buildx
Authors
Description
Languages
Shell
92.4%
Dockerfile
7.6%