forked from bubuntux/nordvpn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Julio Gutierrez
committed
Feb 5, 2022
1 parent
e1ec6b6
commit 9eff5d4
Showing
4 changed files
with
22 additions
and
3 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,7 +1,7 @@ | ||
FROM s6on/ubuntu:20.04 | ||
LABEL maintainer="Julio Gutierrez [email protected]" | ||
|
||
ARG NORDVPN_VERSION=3.12.2 | ||
ARG NORDVPN_VERSION=3.12.3 | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update -y && \ | ||
|
@@ -21,4 +21,4 @@ RUN apt-get update -y && \ | |
|
||
COPY /rootfs / | ||
ENV S6_CMD_WAIT_FOR_SERVICES=1 | ||
CMD nord_login && nord_config && nord_connect && nord_watch | ||
CMD nord_login && nord_config && nord_connect && nord_migrate && nord_watch |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/with-contenv bash | ||
|
||
shopt -s nocasematch; if [[ "${TECHNOLOGY:-NordLynx}" =~ "NordLynx" ]]; then | ||
echo "############################################################" | ||
echo "__ .___ ___. .______ ______ .______ .___________. ___ .__ __. .___________. " | ||
echo "| | | \/ | | _ \ / __ \ | _ \ | | / \ | \ | | | |" | ||
echo "| | | \ / | | |_) | | | | | | |_) | \`---| |----\` / ^ \ | \| | \`---| |----\`" | ||
echo "| | | |\/| | | ___/ | | | | | / | | / /_\ \ | . \` | | |" | ||
echo "| | | | | | | | | \`--' | | |\ \----. | | / _____ \ | |\ | | |" | ||
echo "|__| |__| |__| | _| \______/ | _| \`._____| |__| /__/ \__\ |__| \__| |__|" | ||
echo "↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓" | ||
echo "Please migrate to the NordLynx container (https://github.com/bubuntux/nordlynx)" | ||
echo "Here is your private Key: $(wg show nordlynx private-key)" | ||
echo "IP: $(ip -o addr show dev nordlynx | awk '$3 == "inet" {print $4}')" | ||
echo "############################################################" | ||
fi | ||
|
||
exit 0 |