Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
anandslab committed Nov 22, 2019
1 parent 7ecec46 commit 9a66ec2
Show file tree
Hide file tree
Showing 4 changed files with 345 additions and 176 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
# Changelog
## Planned:
* Add nut-upsd, mariadb/pma, HealthChecks, FileRun, smtp-to-telegram
* Replace or remove Transmission/qBittorrent (duplicate functionality).
* Replace or remove Transmission/qBittorrent (duplicate functionality)

## November 21, 2019
* Added Autoindex
* Addded TellyTV for IPTV proxy for plex
* Added StatPing with Grafana Dashboard - not working yet
* Separated VPN apps into different compose file
* Removed IPVanish container and put vpn apps behind Transmission-VPN's network

## November 8, 2019
* Harmonized paths and removed unused volumes
* Moved Plex and Emby transcoding to /dev/shm (RAM)

## November 7, 2019
* Added IPVanish VPN container.
* Added VPN support for Jackett, qBittorrent, jDownloader, and Firefox.
* Added VPN support for Jackett, qBittorrent, and jDownloader.
* Initial push to GitHub

## November 6, 2019
Expand Down
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ We will try to keep this repo up-to-date. For now, here are the apps currently i
* Portainer - Container Management
* Organizr - Unified Frontend
* Heimdall - Unified Frontend Alternative
* Autoindex - Plain text Index to All Files

### SMART HOME

Expand All @@ -34,6 +35,14 @@ We will try to keep this repo up-to-date. For now, here are the apps currently i
* phpMyAdmin - Database management
* InfluxDB - Database for sensor data
* Grafana - Graphical data visualization for InfluxDB data
* Varken - Monitor Plex, Sonarr, Radarr, and Other Data

### DOWNLOADERS

* jDownloader - Download management
* SABnzbd - Binary newsgrabber (NZB downloader)
* qBittorrent - Torrent downloader
* TransmissionBT - Torrent Downloader

### INDEXERS

Expand All @@ -46,19 +55,13 @@ We will try to keep this repo up-to-date. For now, here are the apps currently i
* Radarr - Movie management
* Sonarr - TV Shows management

### DOWNLOADERS

* jDownloader - Download management
* SABnzbd - Binary newsgrabber (NZB downloader)
* qBittorrent - Torrent downloader
* TransmissionBT - Torrent Downloader

### MEDIA SERVER

* Plex - Media Server
* Emby - Media Server
* Tautulli - Previously PlexPy. Plex statistics and monitoring
* Plex-Sync - For Syncing watched status between plex servers
* Telly Tv- IPTV proxy for Plex

### MEDIA FILE MANAGEMENT

Expand All @@ -79,7 +82,7 @@ We will try to keep this repo up-to-date. For now, here are the apps currently i
* qDirStat - Directory Statistics
* Guacamole - Remote desktop, SSH, on Telnet on any HTML5 Browser
* Guacamole Daemon - Needed for Guacamole
* IPVanish - VPN for container traffic
* StatPing - Status Page & Monitoring Server

### MAINTENANCE

Expand All @@ -92,7 +95,6 @@ Some of the containers are behind VPN for privacy and security. We have been usi
* qBittorrent
* Transmission BT
* jDownloader
* Firefox

Based on the docker-compose blocks for the above apps, you can almost any of the apps behind VPN.

Expand Down
16 changes: 11 additions & 5 deletions docker-compose-vpn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ services:
image: linuxserver/jackett
container_name: jackett
restart: unless-stopped
network_mode: container:ipvanish
network_mode: container:transmission-vpn
# depends_on:
# - transmission-vpn
volumes:
- ${USERDIR}/docker/jackett:/config
- ${USERDIR}/Downloads:/downloads
Expand Down Expand Up @@ -58,7 +60,9 @@ services:
image: jlesage/jdownloader-2
container_name: jdownloader
restart: unless-stopped
network_mode: container:ipvanish
network_mode: container:transmission-vpn
# depends_on:
# - transmission-vpn
volumes:
- ${USERDIR}/Downloads/completed:/output
- ${USERDIR}/docker/jdownloader:/config
Expand Down Expand Up @@ -102,7 +106,9 @@ services:
image: linuxserver/qbittorrent
container_name: qbittorrent
restart: unless-stopped
network_mode: container:ipvanish
network_mode: container:transmission-vpn
# depends_on:
# - transmission-vpn
volumes:
- ${USERDIR}/docker/qbittorrent:/config
- ${USERDIR}/Downloads:/downloads
Expand Down Expand Up @@ -145,11 +151,11 @@ services:
restart: unless-stopped
networks: # Cannot specify if using network_mode: container
- traefik_proxy # Cannot specify if using network_mode: container
# network_mode: container:ipvanish
# network_mode: container:transmission-vpn
ports: # Cannot specify if using network_mode: container. Specify in VPN container ports.
- "8199:8080"
# depends_on:
# - ipvanish
# - transmission-vpn
volumes:
# - ${USERDIR}/Downloads/wip_media:/tmp/youtube_dl
- ${USERDIR}/docker/youtube-dl:/youtube_dl
Expand Down

0 comments on commit 9a66ec2

Please sign in to comment.