Forked from piscisaureus
To identify one particular pull request, find the pull request number on the Azure DevOps site:
Then fetch and checkout the pull request in a local branch named pull/137
Forked from piscisaureus
To identify one particular pull request, find the pull request number on the Azure DevOps site:
Then fetch and checkout the pull request in a local branch named pull/137
| # Docker compose to set up containers for all services you need: | |
| # VPN | |
| # Sonarr, Radarr, Lidarr, Qbittorrent | |
| # Non-VPN | |
| # Plex, get_iplayer | |
| # Before running docker-compose, you should pre-create all of the following folders. | |
| # Folders for Docker State: | |
| # /volume1/dockerdata. - root where this docker-compose.yml should live | |
| # /volume1/dockerdata/plex - Plex config and DB | |
| # /volume1/dockerdata/sonarr - Sonarr config and DB |
Details:
Versions are denoted using a standard triplet of integers: MAJOR.MINOR.PATCH. The basic intent is that MAJOR versions are incompatible, large-scale upgrades of the API. MINOR versions retain source and binary compatibility with older minor versions, and changes in the PATCH level are perfectly compatible, forwards and backwards.
| #!/bin/bash | |
| wget -qO- https://get.docker.com/ | sh | |
| sudo usermod -aG docker $(whoami) | |
| sudo systemctl enable docker.service | |
| sudo systemctl start docker.service | |
| sudo yum install -y epel-release | |
| sudo yum install -y python-pip | |
| sudo yum upgrade -y python* | |
| sudo pip install docker-compose --force --upgrade |
| -server | |
| -Xms2g | |
| -Xmx2g | |
| -Xss16m | |
| -XX:+UseConcMarkSweepGC | |
| -XX:+CMSParallelRemarkEnabled | |
| -XX:ConcGCThreads=4 | |
| -XX:ReservedCodeCacheSize=128m | |
| -XX:+AlwaysPreTouch | |
| -XX:+TieredCompilation |
| # Eclipse | |
| .classpath | |
| .project | |
| .settings/ | |
| # Intellij | |
| .idea/ | |
| *.iws | |
| # Mac |
| <scheme name="Molokai" version="142" parent_scheme="Default"> | |
| <option name="LINE_SPACING" value="1.0" /> | |
| <option name="EDITOR_FONT_SIZE" value="14" /> | |
| <option name="EDITOR_FONT_NAME" value="Menlo" /> | |
| <colors> | |
| <option name="ADDED_LINES_COLOR" value="a6e22e" /> | |
| <option name="ANNOTATIONS_COLOR" value="66d9ef" /> | |
| <option name="ANNOTATIONS_MERGED_COLOR" value="a6e22e" /> | |
| <option name="CARET_COLOR" value="f8f8f2" /> | |
| <option name="CARET_ROW_COLOR" value="232526" /> |