From bac50943507e6b334b232b04d5553b0ae90aaf4a Mon Sep 17 00:00:00 2001 From: kdouglas011 Date: Mon, 27 Apr 2026 10:36:25 -0400 Subject: [PATCH] Updated file --- portainer/docker-compose.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/portainer/docker-compose.yaml b/portainer/docker-compose.yaml index 9aa7bfa..e99269e 100644 --- a/portainer/docker-compose.yaml +++ b/portainer/docker-compose.yaml @@ -7,15 +7,14 @@ services: portainer: image: portainer/portainer-ce:lts container_name: portainer - restart: unless-stopped # Recommended over "always" for modern setups + restart: unless-stopped # Recommended over "always" for modern setups ports: - - "8000:8000" # Agent / API port (identical) - - "9443:9443" # HTTPS Web UI (identical) - # - "9000:9000" # Plain HTTP UI — intentionally commented out (matches your current inspect) + - "8000:8000" # Agent / API port + - "9443:9443" # HTTPS Web UI volumes: - portainer_data:/data - - /var/run/docker.sock:/var/run/docker.sock:ro + - /var/run/docker.sock:/var/run/docker.sock - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro environment: - - TZ=America/New_York # ← Change this to your actual timezone \ No newline at end of file + - TZ=America/New_York # ← Change this to your actual timezone \ No newline at end of file