From 724c9e74a8542c356202a200c921dd329cf21e1e Mon Sep 17 00:00:00 2001 From: Ade Thompson Date: Mon, 25 Aug 2025 18:32:27 +0100 Subject: [PATCH] update --- docker-compose.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 3ab6bf9..948ea8c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,11 +1,8 @@ version: "3.9" - services: web: - image: nginx:alpine - container_name: hello-nginx + build: . + image: hello-dokploy:latest restart: unless-stopped - ports: - - "8082:80" - volumes: - - ./html:/usr/share/nginx/html:ro \ No newline at end of file + # no volumes here + # ports: ["8080:80"] # only if you’re not behind a proxy \ No newline at end of file