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