mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-06 08:11:54 +00:00
9 lines
226 B
Bash
Executable File
9 lines
226 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if ! [ "$(ls -A /var/lib/transmission/config/)" ]; then
|
|
cp /config/* /var/lib/transmission/config/
|
|
|
|
fi
|
|
|
|
/usr/bin/transmission-daemon --foreground --no-portmap --log-error --config-dir /var/lib/transmission/config
|