diff --git a/install.sh b/install.sh index a2434b2..805a1af 100755 --- a/install.sh +++ b/install.sh @@ -1,5 +1,6 @@ APP=jet-search DOMAIN=jetsearch.com +PORT=5000 DNS=" zone \"$DOMAIN\" { type master; @@ -16,4 +17,4 @@ if ! grep -q "$DNS" /etc/bind/named.conf.local; then echo "$DNS" | tee -a /etc/bind/named.conf.local fi cp zonefile.cnf /etc/bind/db.$DOMAIN -docker run -p 5000:5000 --name $APP --restart always -d $APP +docker run -p $PORT:5000 --name $APP --restart always -d $APP