From 20ba94e0d158fb40dfc51c05d4ec905c992ccbc5 Mon Sep 17 00:00:00 2001 From: Patrick Date: Sat, 16 Nov 2024 20:51:06 +0100 Subject: [PATCH] fix --- Dockerfile | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3e96ae0..938d105 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] diff --git a/Makefile b/Makefile index 0136335..3f313c8 100644 --- a/Makefile +++ b/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)