templates/blueprints/beszel/docker-compose.yml
Mauricio Siu fe45176be5 Add Beszel blueprint with Docker Compose and configuration files
- Introduced Docker Compose setup for Beszel service, including port and volume configuration.
- Added logo for Beszel.
- Created template.toml for Beszel with default variables for configuration.
2025-03-30 15:16:33 -06:00

13 lines
246 B
YAML

version: "3.8"
services:
beszel:
image: henrygd/beszel:0.9.1
restart: unless-stopped
ports:
- 8090
volumes:
- beszel_data:/beszel_data
- /var/run/docker.sock:/var/run/docker.sock:ro
volumes:
beszel_data: {}