port
This commit is contained in:
parent
9bfffe868f
commit
c6d4bcc077
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
APP=jet-search
|
APP=jet-search
|
||||||
DOMAIN=jetsearch.com
|
DOMAIN=jetsearch.com
|
||||||
|
PORT=5000
|
||||||
DNS="
|
DNS="
|
||||||
zone \"$DOMAIN\" {
|
zone \"$DOMAIN\" {
|
||||||
type master;
|
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
|
echo "$DNS" | tee -a /etc/bind/named.conf.local
|
||||||
fi
|
fi
|
||||||
cp zonefile.cnf /etc/bind/db.$DOMAIN
|
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
|
||||||
|
|
Loading…
Reference in a new issue