From caf454e4bc577848f28ccfa5044d58344dd5ea13 Mon Sep 17 00:00:00 2001 From: Kevin Douglas Date: Mon, 27 Apr 2026 10:18:07 -0400 Subject: [PATCH] Add Portainer stack matching current CLI install --- portainer/docker-compose.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 portainer/docker-compose.yaml diff --git a/portainer/docker-compose.yaml b/portainer/docker-compose.yaml new file mode 100644 index 0000000..07cf529 --- /dev/null +++ b/portainer/docker-compose.yaml @@ -0,0 +1,21 @@ +version: '3.8' + +volumes: + portainer_data: + +services: + portainer: + image: portainer/portainer-ce:lts + container_name: portainer + restart: always + ports: + - "8000:8000" # Agent port (you have this) + - "9000:9000" # Main HTTP UI + - "9443:9443" # HTTPS UI + volumes: + - portainer_data:/data + - /var/run/docker.sock:/var/run/docker.sock:ro + - /etc/timezone:/etc/timezone:ro + - /etc/localtime:/etc/localtime:ro + environment: + - TZ=America/New_York # ← Change to your actual timezone \ No newline at end of file