New backup 2024-04-17 12:37:44
This commit is contained in:
parent
29c3ba1b46
commit
87e90792f5
3 changed files with 32 additions and 31 deletions
|
@ -1,35 +1,25 @@
|
|||
|
||||
#SYSINFO
|
||||
# Time zone - get identifier here: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
||||
TZ=
|
||||
# UID & GID - get by running 'id' command as user who should own files
|
||||
UID=
|
||||
GID=
|
||||
|
||||
#KASM VNC
|
||||
# kasm vnc viewer user/pass for calibre
|
||||
KASM_USER=
|
||||
KASM_PASS=
|
||||
|
||||
#SAMBA
|
||||
#samba user/pass - user must exist on machine
|
||||
SMB_USER=
|
||||
SMB_PASS=
|
||||
|
||||
#VPN
|
||||
#vpn config for gluetun
|
||||
WG_PRIV_KEY=
|
||||
WG_PRESHARED_KEY=
|
||||
WG_ADDR=
|
||||
VPN_USER=
|
||||
VPN_PASS=
|
||||
WG_COUNTRIES=
|
||||
VPN_PORTS=
|
||||
|
||||
#PATHS
|
||||
# Data Path - this is the parent directory where all of your persistent container data will be stored
|
||||
DATA_PATH=
|
||||
# Media Path - this is the directory where all of your media will be stored
|
||||
MEDIA_PATH=
|
||||
# Temp path - this is where torrents will be downloaded to, and where transcoding cache will reside
|
||||
TEMP_PATH=
|
||||
|
||||
#URLS
|
||||
|
@ -37,29 +27,29 @@ JELLYFIN_SERVER=
|
|||
AIRSONIC_SERVER=
|
||||
|
||||
#PORTS
|
||||
#These are the ports services will be available at. I've left my reccomendations here
|
||||
AIRSONIC_PORT=4040
|
||||
AIRSONIC_REFIX_PORT=4041
|
||||
AIRSONIC_PORT=
|
||||
AIRSONIC_REFIX_PORT=
|
||||
|
||||
CALIBRE_WEB_PORT=8083
|
||||
CALIBRE_WEB_PORT=
|
||||
|
||||
CALIBRE_PORT=8020
|
||||
CALIBRE_PORT=
|
||||
|
||||
QBT_PUBLIC_PORT=8182
|
||||
QBT_PRIVATE_PORT=8181
|
||||
QBT_PUBLIC_PORT=
|
||||
QBT_PRIVATE_PORT=
|
||||
|
||||
JELLYFIN_PORT=8096
|
||||
JELLYFIN_VUE_PORT=8097
|
||||
JELLYFIN_PORT=
|
||||
JELLYFIN_VUE_PORT=
|
||||
|
||||
EMUJS_BACKEND_PORT=3007
|
||||
EMUJS_PORT=307
|
||||
EMUJS_BACKEND_PORT=
|
||||
EMUJS_PORT=
|
||||
|
||||
BAZARR_PORT=6767
|
||||
LIDARR_PORT=8686
|
||||
PROWLARR_PORT=9696
|
||||
RADARR_PORT=7878
|
||||
SONARR_PORT=8989
|
||||
TDARR_HTTP_PORT=8265
|
||||
TDARR_SERVER_PORT=8266
|
||||
BAZARR_PORT=
|
||||
LIDARR_PORT=
|
||||
PROWLARR_PORT=
|
||||
FLARESOLVERR_PORT=
|
||||
RADARR_PORT=
|
||||
SONARR_PORT=
|
||||
TDARR_HTTP_PORT=
|
||||
TDARR_SERVER_PORT=
|
||||
|
||||
OMBI_PORT=3579
|
||||
OMBI_PORT=
|
||||
|
|
|
@ -4,5 +4,8 @@ script_root="$( dirname $0 )"
|
|||
|
||||
for y in "${script_root}"/*.yml;do
|
||||
by="$(basename $y)"
|
||||
sudo docker-compose -f "${y}" pull
|
||||
sudo docker-compose -f "${y}" -p "${by}" up -d
|
||||
done
|
||||
|
||||
sudo docker image prune -f
|
||||
|
|
8
updategit.sh
Executable file
8
updategit.sh
Executable file
|
@ -0,0 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
cp .env .env_template
|
||||
sed -i 's/=.*/=/' .env_template
|
||||
|
||||
git add .
|
||||
git commit -m "New backup `date +'%Y-%m-%d %H:%M:%S'`"
|
||||
git push
|
Loading…
Add table
Reference in a new issue