Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d370ed7106 |
+1
-1
@@ -4,7 +4,7 @@ networks:
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
server:
|
server:
|
||||||
image: gitea/gitea:1.26.0
|
image: gitea/gitea:latest
|
||||||
container_name: gitea
|
container_name: gitea
|
||||||
environment:
|
environment:
|
||||||
- USER_UID=1000
|
- USER_UID=1000
|
||||||
|
|||||||
+1
-2
@@ -9,8 +9,7 @@ DB_DATA_LOCATION=/var/lib/immich/db
|
|||||||
TZ=America/New_York
|
TZ=America/New_York
|
||||||
|
|
||||||
# The Immich version to use. You can pin this to a specific version like "v1.71.0"
|
# The Immich version to use. You can pin this to a specific version like "v1.71.0"
|
||||||
IMMICH_VERSION=v2.7.5
|
IMMICH_VERSION=v2.3.1
|
||||||
|
|
||||||
|
|
||||||
# Connection secret for postgres. You should change it to a random password
|
# Connection secret for postgres. You should change it to a random password
|
||||||
DB_PASSWORD=postgres
|
DB_PASSWORD=postgres
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ services:
|
|||||||
app:
|
app:
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
image: nextcloud:33
|
image: nextcloud:32
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- 8080:80
|
- 8080:80
|
||||||
|
|||||||
@@ -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