Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d370ed7106 | |||
| 42d9e628b7 | |||
| 9cf54273e5 | |||
| c5df925cb5 | |||
| e0d80dba34 | |||
| 5390ef62e9 | |||
| 39c9221d00 | |||
| a1c2266436 | |||
| 3e02ee89b9 | |||
| 315c4cd61e | |||
| 9abd0aa20e | |||
| ad1c1912aa | |||
| 0b60f122b9 |
@@ -1,3 +1,3 @@
|
|||||||
# containers
|
# containers
|
||||||
|
|
||||||
compose.yaml and other configuration data for Docker containers
|
compose.yaml and other configuration data for Docker containers.
|
||||||
|
|||||||
+2
-2
@@ -18,7 +18,7 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- gitea
|
- gitea
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/storage/appdata/gitea/data:/data
|
- /var/lib/gitea/data:/data
|
||||||
- /etc/timezone:/etc/timezone:ro
|
- /etc/timezone:/etc/timezone:ro
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
ports:
|
ports:
|
||||||
@@ -38,6 +38,6 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- gitea
|
- gitea
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/storage/appdata/gitea/mysql:/var/lib/mysql
|
- /var/lib/gitea/db:/var/lib/mysql
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -1,9 +1,9 @@
|
|||||||
# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables
|
# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables
|
||||||
|
|
||||||
# The location where your uploaded files are stored
|
# The location where your uploaded files are stored
|
||||||
UPLOAD_LOCATION=/mnt/storage/appdata/immich/library
|
UPLOAD_LOCATION=/var/lib/immich/data
|
||||||
# The location where your database files are stored
|
# The location where your database files are stored
|
||||||
DB_DATA_LOCATION=/mnt/storage/appdata/immich/postgres
|
DB_DATA_LOCATION=/var/lib/immich/db
|
||||||
|
|
||||||
# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
|
# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
|
||||||
TZ=America/New_York
|
TZ=America/New_York
|
||||||
|
|||||||
@@ -4,19 +4,19 @@ services:
|
|||||||
container_name: jellyfin
|
container_name: jellyfin
|
||||||
network_mode: 'host'
|
network_mode: 'host'
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/storage/appdata/jellyfin/config:/config
|
- /etc/jellyfin:/config
|
||||||
- /mnt/storage/appdata/jellyfin/config/web-config.json:/jellyfin/jellyfin-web/config.json
|
# - /etc/jellyfin/web-config.json:/jellyfin/jellyfin-web/config.json
|
||||||
- /mnt/storage/appdata/jellyfin/cache:/cache
|
- /var/lib/jellyfin/cache:/cache
|
||||||
- /mnt/cygnus:/cygnus:ro
|
- /mnt/cygnus:/cygnus:ro
|
||||||
- type: bind
|
- type: bind
|
||||||
source: /mnt/storage/appdata/jellyfin/media
|
source: /var/lib/jellyfin/media
|
||||||
target: /media
|
target: /media
|
||||||
read_only: true
|
read_only: true
|
||||||
restart: 'unless-stopped'
|
restart: 'unless-stopped'
|
||||||
# Optional - alternative address used for autodiscovery
|
# Optional - alternative address used for autodiscovery
|
||||||
# environment:
|
environment:
|
||||||
# - JELLYFIN_PublishedServerUrl=http://example.com
|
- JELLYFIN_PublishedServerUrl=http://127.0.0.1:8096
|
||||||
# Optional - may be necessary for docker healthcheck to pass if running in host network mode
|
# Optional - may be necessary for docker healthcheck to pass if running in host network mode
|
||||||
# extra_hosts:
|
# extra_hosts:
|
||||||
# - 'host.docker.internal:host-gateway'
|
# - 'host.docker.internal:host-gateway'
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
|
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/storage/appdata/nextcloud/mysql:/var/lib/mysql
|
- /var/lib/nextcloud/db:/var/lib/mysql
|
||||||
networks:
|
networks:
|
||||||
- default
|
- default
|
||||||
environment:
|
environment:
|
||||||
@@ -21,7 +21,7 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- 8080:80
|
- 8080:80
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/storage/appdata/nextcloud/www/html:/var/www/html
|
- /var/lib/nextcloud/data/www/html:/var/www/html
|
||||||
networks:
|
networks:
|
||||||
- default
|
- default
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -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