├── Dockerfile ├── Jenkinsfile ├── README.md ├── VERSION ├── docker-compose.yaml └── rootfs ├── etc └── cont-init.d │ └── tmm.sh └── startapp.sh /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romancin/tinymediamanager-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romancin/tinymediamanager-docker/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romancin/tinymediamanager-docker/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v3.1.17 2 | -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romancin/tinymediamanager-docker/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /rootfs/etc/cont-init.d/tmm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romancin/tinymediamanager-docker/HEAD/rootfs/etc/cont-init.d/tmm.sh -------------------------------------------------------------------------------- /rootfs/startapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romancin/tinymediamanager-docker/HEAD/rootfs/startapp.sh --------------------------------------------------------------------------------