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.
This commit is contained in:
Mauricio Siu
2025-03-30 15:16:33 -06:00
parent 7d5cb0ea67
commit fe45176be5
3 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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: {}