Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b1c2d0977 |
@@ -1,3 +1,3 @@
|
||||
# containers
|
||||
|
||||
compose.yaml and other configuration data for Docker containers.
|
||||
compose.yaml and other configuration data for Docker containers
|
||||
@@ -0,0 +1,27 @@
|
||||
services:
|
||||
beszel:
|
||||
image: henrygd/beszel:latest
|
||||
container_name: beszel
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
APP_URL: http://localhost:8090
|
||||
ports:
|
||||
- 8090:8090
|
||||
volumes:
|
||||
- ./beszel_data:/beszel_data
|
||||
- ./beszel_socket:/beszel_socket
|
||||
|
||||
beszel-agent:
|
||||
image: henrygd/beszel-agent:latest
|
||||
container_name: beszel-agent
|
||||
restart: unless-stopped
|
||||
network_mode: host
|
||||
volumes:
|
||||
- ./beszel_agent_data:/var/lib/beszel-agent
|
||||
- ./beszel_socket:/beszel_socket
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||
environment:
|
||||
LISTEN: /beszel_socket/beszel.sock
|
||||
HUB_URL: http://localhost:8090
|
||||
TOKEN: da52524a-fa93-47ef-908c-dd001c9e8e18
|
||||
KEY: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFgDayLLA8JOzQ7fZtqTlUaRIQvhtoYSZvkUC9PrdQJG"
|
||||
@@ -0,0 +1,13 @@
|
||||
services:
|
||||
beszel:
|
||||
image: henrygd/beszel:latest
|
||||
container_name: beszel
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
APP_URL: http://localhost:8090
|
||||
ports:
|
||||
- 8090:8090
|
||||
volumes:
|
||||
- ./beszel_data:/beszel_data
|
||||
- ./beszel_socket:/beszel_socket
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
services:
|
||||
whisper-streaming:
|
||||
image: ghcr.io/ufal/whisper_streaming:latest
|
||||
container_name: whisper-live-stream
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8071:8000" # WebSocket port for the streaming client
|
||||
environment:
|
||||
- MODEL=base # Options: tiny, base, small, medium (base is best balance for 13700K)
|
||||
- LANGUAGE=en # Hardcoding to English reduces processing lag
|
||||
- COMPUTE_TYPE=int8 # Optimizes the model for rapid CPU integer math
|
||||
- THREADS=4 # Restricts execution to 4 performance cores to protect host OS
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-file: "3"
|
||||
|
||||
Reference in New Issue
Block a user