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
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue