From 14472408e850a16ecda8bbb0d9939964a2a4f3a1 Mon Sep 17 00:00:00 2001 From: Sthope Date: Sun, 8 May 2022 19:00:26 +0200 Subject: [PATCH] first commit --- docs/portainer-stacks/Transmission.md | 63 +++++++++++++++++++++++++++ docs/proxmox/Passthrough.md | 5 +++ mkdocs.yml | 1 + 3 files changed, 69 insertions(+) create mode 100644 docs/portainer-stacks/Transmission.md diff --git a/docs/portainer-stacks/Transmission.md b/docs/portainer-stacks/Transmission.md new file mode 100644 index 0000000..9685481 --- /dev/null +++ b/docs/portainer-stacks/Transmission.md @@ -0,0 +1,63 @@ +Portainer Stack: +```yaml +--- +version: "3.8" +services: + transmission: + image: lscr.io/linuxserver/transmission:latest + container_name: transmission + network_mode: bridge + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Amsterdam + - TRANSMISSION_WEB_HOME=/combustion-release/ + - USER=username + - PASS=password + volumes: + - /transmission/config:/config + - /transmission/downloads:/downloads + - /transmission/torrents:/watch + ports: + - 9091:9091 + - 51413:51413 + - 51413:51413/udp + restart: unless-stopped + labels: + - com.centurylinklabs.watchtower.enable=true +``` + +[combustion](https://github.com/Secretmapper/combustion) +``` +TRANSMISSION_WEB_HOME=/combustion-release/ +``` + +[transmission-web-control](https://github.com/ronggang/transmission-web-control) +``` +TRANSMISSION_WEB_HOME=/transmission-web-control/ +``` + +[kettu](https://github.com/endor/kettu) +``` +TRANSMISSION_WEB_HOME=/kettu/ +``` + +[flood-for-transmission](https://github.com/johman10/flood-for-transmission) +``` +TRANSMISSION_WEB_HOME=/flood-for-transmission/ +``` + +[Transmissionic](https://github.com/6c65726f79/Transmissionic) +``` +TRANSMISSION_WEB_HOME=/transmissionic/ +``` + +
+ combustion + + +

https://github.com/Secretmapper/combustion

+ +``` +TRANSMISSION_WEB_HOME=/combustion-release/ +``` \ No newline at end of file diff --git a/docs/proxmox/Passthrough.md b/docs/proxmox/Passthrough.md index 09f3645..d88287e 100644 --- a/docs/proxmox/Passthrough.md +++ b/docs/proxmox/Passthrough.md @@ -18,4 +18,9 @@ lxc.mount.entry: /dev/snd dev/snd none bind,create=dir ``` lxc.cgroup2.devices.allow: c 4:6 rwm lxc.mount.entry: /dev/tty7 dev/tty7 none bind,create=file +``` + +``` +lxc.cgroup.devices.allow: c 188:* rwm +lxc.mount.entry: /dev/ttyUSB0 dev/ttyUSB0 none bind,optional,create=file ``` \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index 9b04799..139bde6 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -101,6 +101,7 @@ nav: - Samba: portainer-stacks/samba.md - Swag: portainer-stacks/Swag.md - TasmoBackup: portainer-stacks/TasmoBackup.md + - Transmission: portainer-stacks/Transmission.md - Uptime-Kuma: portainer-stacks/uptime-kuma.md - VSCode: portainer-stacks/VSCode.md - Zigbee2MQTT: portainer-stacks/Zigbee2MQTT.md