fix
This commit is contained in:
parent
7b90fc2f3a
commit
20ba94e0d1
2 changed files with 2 additions and 2 deletions
|
@ -9,4 +9,4 @@ EXPOSE 5000
|
|||
RUN adduser -D app
|
||||
USER app
|
||||
|
||||
CMD ["gunicorn","-w 2", "-b 0.0.0.0:5000", "wsgi:app"]
|
||||
CMD ["gunicorn","-w 2", "-b 0.0.0.0:5001", "wsgi:app"]
|
||||
|
|
2
Makefile
2
Makefile
|
@ -13,4 +13,4 @@ install:
|
|||
echo "\nzone \"$(DOMAIN)\" {\n type master;\n file \"/etc/bind/db.$(DOMAIN)\";\n};" | tee -a /etc/bind/named.conf.local
|
||||
cp zonefile.cnf /etc/bind/db.$(DOMAIN)
|
||||
docker load -i $(APP).tar
|
||||
docker run -p 5000:5000 --name $(APP) --restart always -d $(APP)
|
||||
docker run -p 5001:5001 --name $(APP) --restart always -d $(APP)
|
||||
|
|
Loading…
Reference in a new issue