Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d370ed7106 | |||
| 42d9e628b7 | |||
| 9cf54273e5 | |||
| c5df925cb5 | |||
| e0d80dba34 | |||
| 39c9221d00 | |||
| 3e02ee89b9 | |||
| ad1c1912aa | |||
| 787847292b | |||
| 102f9d2b33 | |||
| 12486de442 | |||
| 05b8eaf353 | |||
| 27c1e01476 | |||
| 7eac2b12f8 |
@@ -1,3 +1,3 @@
|
|||||||
# containers
|
# containers
|
||||||
|
|
||||||
compose.yaml and other configuration data for Docker containers
|
compose.yaml and other configuration data for Docker containers.
|
||||||
|
|||||||
@@ -1,27 +0,0 @@
|
|||||||
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"
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
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
|
|
||||||
|
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
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