From 3f75e7b70188814573e31437b9f97ce6feadc533 Mon Sep 17 00:00:00 2001 From: devdamo <77869423+devdamo@users.noreply.github.com> Date: Sun, 7 Sep 2025 01:36:34 +0100 Subject: [PATCH] Update Portainer blueprint to use latest version and PNG logo (#342) * Update Portainer blueprint to use latest version and PNG logo Switched Portainer version to 'latest' in meta.json and docker-compose.yml, replaced SVG logo with PNG, and updated docker-compose.yml to remove agent service, add restart policy, ports, and SSL command. Adjusted template.toml config formatting and port value for consistency. * Remove SSL configuration from Portainer service Removed the SSL-related command and port 9443 from the Portainer service in docker-compose.yml, leaving only port 9000 exposed. This simplifies the setup by disabling SSL support. --- blueprints/portainer/docker-compose.yml | 27 +++++------------------- blueprints/portainer/portainer.png | Bin 0 -> 1207 bytes blueprints/portainer/portainer.svg | 1 - blueprints/portainer/template.toml | 9 ++++---- meta.json | 4 ++-- 5 files changed, 12 insertions(+), 29 deletions(-) create mode 100644 blueprints/portainer/portainer.png delete mode 100644 blueprints/portainer/portainer.svg diff --git a/blueprints/portainer/docker-compose.yml b/blueprints/portainer/docker-compose.yml index 19e67a3e..778c3a26 100644 --- a/blueprints/portainer/docker-compose.yml +++ b/blueprints/portainer/docker-compose.yml @@ -1,29 +1,12 @@ -version: '3.8' - services: - agent: - image: portainer/agent - volumes: - - /var/run/docker.sock:/var/run/docker.sock - - /var/lib/docker/volumes:/var/lib/docker/volumes - - - deploy: - mode: global - placement: - constraints: [node.platform.os == linux] - portainer: - image: portainer/portainer-ce + image: portainer/portainer-ce:latest + restart: unless-stopped volumes: - /var/run/docker.sock:/var/run/docker.sock - portainer-data:/data - deploy: - mode: replicated - placement: - constraints: [node.role == manager] - + ports: + - 9000 volumes: - portainer-data: - \ No newline at end of file + portainer-data: {} \ No newline at end of file diff --git a/blueprints/portainer/portainer.png b/blueprints/portainer/portainer.png new file mode 100644 index 0000000000000000000000000000000000000000..ac866814dae2b66ac2ea8b79c211b89878dedda1 GIT binary patch literal 1207 zcmeAS@N?(olHy`uVBq!ia0vp^4?viM8A$4Wo^=^WwFmfwxE^TuucvQ(wE4f5uCBj* zvWAXkx?l5=rvJ`XLCRW+j#j?w%Ad<=NNVb6Z>#>;owRLv@!fdON>y#uJ#{}*eH%7a zyeSHqTph6>(k*{s{+06ZS>CpB_0h`|G-a*L+;RfCC#4-QHnyCTbH>crzCUG`jk&w0 zZRC=I8?i1?*0F-XYaUt_T8FqVmo(tR`2`&`sMOQ7REr$76B&?MQlWgv*X%B22=hW?qt3E z@bLF&*De|>y_S?q=`{pg_Jbhw8YRTWE*}B_)AKWs3l|$4g z&+UxoXWq!OI<8b(dg%tkhnSq|*@foi`O&#t5mRR-J(Ahz`Ji)0%+$Wz6=#{YZo92i z-gU#|gGtxzRe!1AV4Ur%S{mz5dmAqjt8uzq-4CA;eR%V|~}*PIisrbu3H z&_8rJBQ{}%!0`e@!GPEh@fC-PoSD+tZ!XBTT!&#epz2tlEF@$8cGv%C?>%GS$vz2rGSIHG=<$Nl8#T=e7{F&eQ zbFaVA-RgKXwcYFEUm1UR$A7hH<5Gsdwm1CPR2J-)pYFx<{!3%|Q*DF#1w0G(FV|_Z zd%I@VdiA+Y>5pc{`}<2jt953ns(571GwEwX&CjD1g|Gg7KPqnOb^URp+FAY3x|kZn z-`A=)m!)T)v{|eC(6X(9@k)%#@wttc$`uRZ56$~o$ho_$yk59T@BMExq2FqIxr_QA z#8fft%s)1HUuTQtjI~GDCrE18wi+=jzntALqw$-@-V@=4eF>VqtCLu~q+BW$Nww>Z1+i#g5`BeJeXp4;HwnWdrPrhF#d+k{`=ujXa$ zjg(_bH#@(|tx+x8KbXDGUO!tv;=2|5PyOV-k8fMl)j1(sU+jHx_g}=B>#4Uw&%F{6+_AUjQN;dLHufcF znwR%YY*_aB*T-Wp{=<9sJd!Lf9 \ No newline at end of file diff --git a/blueprints/portainer/template.toml b/blueprints/portainer/template.toml index 39a6f3f2..8e184104 100644 --- a/blueprints/portainer/template.toml +++ b/blueprints/portainer/template.toml @@ -2,10 +2,11 @@ main_domain = "${domain}" [config] -env = {} -mounts = [] - [[config.domains]] serviceName = "portainer" -port = 9_000 +port = 9000 host = "${main_domain}" + +[config.env] + +[[config.mounts]] \ No newline at end of file diff --git a/meta.json b/meta.json index 725285fa..5e5d00dd 100644 --- a/meta.json +++ b/meta.json @@ -3816,9 +3816,9 @@ { "id": "portainer", "name": "Portainer", - "version": "2.21.4", + "version": "latest", "description": "Portainer is a container management tool for deploying, troubleshooting, and securing applications across cloud, data centers, and IoT.", - "logo": "portainer.svg", + "logo": "portainer.png", "links": { "github": "https://github.com/portainer/portainer", "website": "https://www.portainer.io/",