diff --git a/README.md b/README.md index a6af069..b5227a9 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,7 @@ Welcome to the All-jellyfin-media-server Repository! This repository contains ev - [Prerequisites](#prerequisites) - [Using Docker](#docker) - [NVidia](#nvidia) + - [NordVPN](#vpn) - [Installation](#installation) - [Basic Installation](#basic-installation) - [Installation with NVidia](#installation-with-nvidia-only) @@ -227,6 +228,28 @@ cd nvidia-patch ./patch.sh ``` +## VPN + +Now we will see how to set up the VPN (Nord VPN). First, you need to connect to the Nord VPN website. + +1. Go to Nord VPN services : + +
+ +
+ +2. Select manual configuration of NordVPN : + +
+ +
+ +3. Select manual configuration of NordVPN : + +
+ +
+ # Installation First, clone the repository : @@ -361,6 +384,12 @@ services: restart: unless-stopped ``` +To launch the installation, simply run: + +```bash +docker compose -f docker-compose.yaml up -d +``` + ## Installation with NVidia only : Classic installation without `VPN` but with `NVidia`: @@ -494,6 +523,12 @@ services: restart: unless-stopped ``` +To launch the installation, simply run: + +```bash +docker compose -f docker-compose-nvidia.yaml up -d +``` + ## Installation with VPN only : Classic installation with `VPN` but without `NVidia`: @@ -634,6 +669,12 @@ services: restart: unless-stopped ``` +To launch the installation, simply run: + +```bash +docker compose -f docker-compose-vpn.yaml up -d +``` + ## Installation with NVidia and VPN : Classic installation with `VPN` and `NVidia`: @@ -782,6 +823,12 @@ services: restart: unless-stopped ``` +To launch the installation, simply run: + +```bash +docker compose -f docker-compose-nvidia-vpn.yaml up -d +``` + # Disclaimer This code is provided for informational purposes only and should not be used for illegal activities. I am not responsible for the actions performed by users of this code. This code is for informational purposes, and if people wish to use it, they should consult the laws of their countries. diff --git a/docker-compose-nvidia-vpn.yml b/docker-compose-nvidia-vpn.yaml similarity index 100% rename from docker-compose-nvidia-vpn.yml rename to docker-compose-nvidia-vpn.yaml diff --git a/docker-compose-nvidia.yml b/docker-compose-nvidia.yaml similarity index 100% rename from docker-compose-nvidia.yml rename to docker-compose-nvidia.yaml diff --git a/docker-compose-vpn.yml b/docker-compose-vpn.yaml similarity index 100% rename from docker-compose-vpn.yml rename to docker-compose-vpn.yaml diff --git a/docker-compose.yml b/docker-compose.yaml similarity index 100% rename from docker-compose.yml rename to docker-compose.yaml diff --git a/image/vpn1.png b/image/vpn1.png new file mode 100644 index 0000000..802f873 Binary files /dev/null and b/image/vpn1.png differ diff --git a/image/vpn2.png b/image/vpn2.png new file mode 100644 index 0000000..1879d65 Binary files /dev/null and b/image/vpn2.png differ diff --git a/image/vpn3.png b/image/vpn3.png new file mode 100644 index 0000000..4dffe5f Binary files /dev/null and b/image/vpn3.png differ