-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new features, fix .env setup, fix permissions and UID conflicts (#50
) * add support for Flaresolverr, automatic timezone detection * add scripts for cleaning up old users, and updating the containers * fix audiobookshelf, re-add jacket support * add optional folder and permission generation also use a previously unused function to clean up code * fix python UID for tautulli and jellyfin * remove empty file * docker-compose sample that uses env variables new .env sample, fixed setup * change default install directory to current dir * fix update_containers * remove obsolete version line * fix directory ownership * update README * address nitpicks * Update check_running.yml Updated auto-check workflow to also copy docker-compose sample file, updated syntax to docker compose without "-"
- Loading branch information
Showing
12 changed files
with
519 additions
and
274 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,34 @@ | ||
# If you're not sure what timezone you should fill in, you can look at the following list: | ||
# https://en.wikipedia.org/wiki/List_of_tz_database_time_zones | ||
# Use the column that says "TZ database name". | ||
# To find your system's preconfigured timezone run: cat /etc/timezone | ||
TIMEZONE=Europe/Amsterdam | ||
|
||
# The PleX claim token is used to connect your server to your account. It can be obtained at | ||
# https://www.plex.tv/claim/ and is valid for 4 minutes after generating the token. | ||
PLEX_CLAIM= | ||
ROOT_DIR=/ | ||
|
||
# Choose your root directory for keeping all your container configs and data. | ||
ROOT_DIR= | ||
|
||
# USER IDs for each container that requires their own user. The default values will most likely suffice, but in case one of these IDs is already in use on your system it will have to be changed. Any value should work as long as there aren't conflicts with other users. | ||
# If you've already set up the containers and want to change user IDs after the fact, you have to remove the old users first and re-set permissions. First run remove_old_users.sh and then the steps for manual installation. | ||
# If you're doing a manual installation make sure to first change the IDs in this file, and then run setup.sh to set up the directory structure and permissions before you start the docker containers. | ||
MEDIACENTER_GID=13000 | ||
SONARR_UID=13001 | ||
RADARR_UID=13002 | ||
LIDARR_UID=13003 | ||
READARR_UID=13004 | ||
MYLAR_UID=13005 | ||
AUDIOBOOKSHELF_UID=13014 | ||
BAZARR_UID=13013 | ||
PROWLARR_UID=13006 | ||
QBITTORRENT_UID=13007 | ||
JACKETT_UID=13008 | ||
PLEX_UID=13010 | ||
OVERSEERR_UID=13009 | ||
SABNZBD_UID=13011 | ||
JELLYSEERR_UID=13012 | ||
|
||
# The user used to run docker-compose. To find this run: id -u | ||
UID=1000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.