mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-25 00:55:32 +02:00
* 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.
12 lines
238 B
YAML
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: {} |