Files
templates/blueprints/portainer/docker-compose.yml
devdamo 3f75e7b701 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.
2025-09-06 18:36:34 -06:00

12 lines
238 B
YAML

services:
portainer:
image: portainer/portainer-ce:latest
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- portainer-data:/data
ports:
- 9000
volumes:
portainer-data: {}