14 Commits

6 changed files with 25 additions and 64 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
# containers
compose.yaml and other configuration data for Docker containers
compose.yaml and other configuration data for Docker containers.
-27
View File
@@ -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"
-13
View File
@@ -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
+6 -23
View File
@@ -1,33 +1,16 @@
services:
portainer:
image: portainer/portainer:latest
image: portainer/portainer-ce:lts
container_name: portainer
restart: unless-stopped
security_opt:
- no-new-privileges:true
networks:
- proxy
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
- /var/run/docker.sock:/var/run/docker.sock
- /var/lib/portainer:/data
ports:
- 9000:9000
labels:
- "traefik.enable=false"
- "traefik.http.routers.portainer.entrypoints=http"
- "traefik.http.routers.portainer.rule=Host(`portainer.objectbrokers.com`)"
- "traefik.http.middlewares.portainer-https-redirect.redirectscheme.scheme=https"
- "traefik.http.routers.portainer.middlewares=portainer-https-redirect"
- "traefik.http.routers.portainer-secure.entrypoints=https"
- "traefik.http.routers.portainer-secure.rule=Host(`portainer.objectbrokers.com`)"
- "traefik.http.routers.portainer-secure.tls=true"
- "traefik.http.routers.portainer-secure.tls.certresolver=http"
- "traefik.http.routers.portainer-secure.service=portainer"
- "traefik.http.services.portainer.loadbalancer.server.port=9000"
- "traefik.docker.network=proxy"
- 9443:9443
- 8000:8000
networks:
proxy:
external: true
default:
name: portainer_network
+18
View File
@@ -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"