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
|
#SYSINFO
|
||||||
# Time zone - get identifier here: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
|
||||||
TZ=
|
TZ=
|
||||||
# UID & GID - get by running 'id' command as user who should own files
|
|
||||||
UID=
|
UID=
|
||||||
GID=
|
GID=
|
||||||
|
|
||||||
#KASM VNC
|
#KASM VNC
|
||||||
# kasm vnc viewer user/pass for calibre
|
|
||||||
KASM_USER=
|
KASM_USER=
|
||||||
KASM_PASS=
|
KASM_PASS=
|
||||||
|
|
||||||
#SAMBA
|
#SAMBA
|
||||||
#samba user/pass - user must exist on machine
|
|
||||||
SMB_USER=
|
SMB_USER=
|
||||||
SMB_PASS=
|
SMB_PASS=
|
||||||
|
|
||||||
#VPN
|
#VPN
|
||||||
#vpn config for gluetun
|
VPN_USER=
|
||||||
WG_PRIV_KEY=
|
VPN_PASS=
|
||||||
WG_PRESHARED_KEY=
|
|
||||||
WG_ADDR=
|
|
||||||
WG_COUNTRIES=
|
WG_COUNTRIES=
|
||||||
VPN_PORTS=
|
|
||||||
|
|
||||||
#PATHS
|
#PATHS
|
||||||
# Data Path - this is the parent directory where all of your persistent container data will be stored
|
|
||||||
DATA_PATH=
|
DATA_PATH=
|
||||||
# Media Path - this is the directory where all of your media will be stored
|
|
||||||
MEDIA_PATH=
|
MEDIA_PATH=
|
||||||
# Temp path - this is where torrents will be downloaded to, and where transcoding cache will reside
|
|
||||||
TEMP_PATH=
|
TEMP_PATH=
|
||||||
|
|
||||||
#URLS
|
#URLS
|
||||||
|
@ -37,29 +27,29 @@ JELLYFIN_SERVER=
|
||||||
AIRSONIC_SERVER=
|
AIRSONIC_SERVER=
|
||||||
|
|
||||||
#PORTS
|
#PORTS
|
||||||
#These are the ports services will be available at. I've left my reccomendations here
|
AIRSONIC_PORT=
|
||||||
AIRSONIC_PORT=4040
|
AIRSONIC_REFIX_PORT=
|
||||||
AIRSONIC_REFIX_PORT=4041
|
|
||||||
|
|
||||||
CALIBRE_WEB_PORT=8083
|
CALIBRE_WEB_PORT=
|
||||||
|
|
||||||
CALIBRE_PORT=8020
|
CALIBRE_PORT=
|
||||||
|
|
||||||
QBT_PUBLIC_PORT=8182
|
QBT_PUBLIC_PORT=
|
||||||
QBT_PRIVATE_PORT=8181
|
QBT_PRIVATE_PORT=
|
||||||
|
|
||||||
JELLYFIN_PORT=8096
|
JELLYFIN_PORT=
|
||||||
JELLYFIN_VUE_PORT=8097
|
JELLYFIN_VUE_PORT=
|
||||||
|
|
||||||
EMUJS_BACKEND_PORT=3007
|
EMUJS_BACKEND_PORT=
|
||||||
EMUJS_PORT=307
|
EMUJS_PORT=
|
||||||
|
|
||||||
BAZARR_PORT=6767
|
BAZARR_PORT=
|
||||||
LIDARR_PORT=8686
|
LIDARR_PORT=
|
||||||
PROWLARR_PORT=9696
|
PROWLARR_PORT=
|
||||||
RADARR_PORT=7878
|
FLARESOLVERR_PORT=
|
||||||
SONARR_PORT=8989
|
RADARR_PORT=
|
||||||
TDARR_HTTP_PORT=8265
|
SONARR_PORT=
|
||||||
TDARR_SERVER_PORT=8266
|
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
|
for y in "${script_root}"/*.yml;do
|
||||||
by="$(basename $y)"
|
by="$(basename $y)"
|
||||||
|
sudo docker-compose -f "${y}" pull
|
||||||
sudo docker-compose -f "${y}" -p "${by}" up -d
|
sudo docker-compose -f "${y}" -p "${by}" up -d
|
||||||
done
|
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