mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- 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.
13 lines
246 B
YAML
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: {} |