├── .dockerignore ├── .github └── workflows │ ├── clean-obselete-tag.yml │ ├── close-stale-issue.yml │ └── docker-publish.yml ├── Dockerfile ├── LICENSE ├── README.md └── root └── etc └── s6-overlay └── s6-rc.d ├── svc-mod-gluetun-sync-port ├── dependencies.d │ └── init-services ├── run └── type └── user └── contents.d └── svc-mod-gluetun-sync-port /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-anc/GSP-Qbittorent-Gluetun-sync-port-mod/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/clean-obselete-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-anc/GSP-Qbittorent-Gluetun-sync-port-mod/HEAD/.github/workflows/clean-obselete-tag.yml -------------------------------------------------------------------------------- /.github/workflows/close-stale-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-anc/GSP-Qbittorent-Gluetun-sync-port-mod/HEAD/.github/workflows/close-stale-issue.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-anc/GSP-Qbittorent-Gluetun-sync-port-mod/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-anc/GSP-Qbittorent-Gluetun-sync-port-mod/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-anc/GSP-Qbittorent-Gluetun-sync-port-mod/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-anc/GSP-Qbittorent-Gluetun-sync-port-mod/HEAD/README.md -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-mod-gluetun-sync-port/dependencies.d/init-services: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-mod-gluetun-sync-port/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-anc/GSP-Qbittorent-Gluetun-sync-port-mod/HEAD/root/etc/s6-overlay/s6-rc.d/svc-mod-gluetun-sync-port/run -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/svc-mod-gluetun-sync-port/type: -------------------------------------------------------------------------------- 1 | longrun -------------------------------------------------------------------------------- /root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-mod-gluetun-sync-port: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------