From 7d103b7107530e70e5a0c3ba95275fa8069a2f47 Mon Sep 17 00:00:00 2001 From: Patrick Date: Tue, 12 Nov 2024 22:14:16 +0100 Subject: [PATCH] maybe, just maybe, i need to run it on the actual port. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4c553db..f607d55 100644 --- a/Makefile +++ b/Makefile @@ -7,4 +7,4 @@ build: install: cp nginx /etc/nginx/sites-enabled/$(APP) docker load -i $(APP) - docker run --name $(APP) --restart always -d $(APP) + docker run -p 5000:5000 --name $(APP) --restart always -d $(APP)