fix missing ANALYTICS_DISABLED var in example docker compose

This commit is contained in:
jeffvli
2026-01-04 16:12:20 -08:00
parent 5ec8f1a904
commit cb749480a4
+2 -1
View File
@@ -1,7 +1,7 @@
services: services:
feishin: feishin:
container_name: feishin container_name: feishin
image: 'ghcr.io/jeffvli/feishin:latest' image: "ghcr.io/jeffvli/feishin:latest"
restart: unless-stopped restart: unless-stopped
environment: environment:
- SERVER_NAME=jellyfin # pre-defined server name - SERVER_NAME=jellyfin # pre-defined server name
@@ -9,6 +9,7 @@ services:
- SERVER_TYPE=jellyfin # the allowed types are: jellyfin, navidrome, subsonic. These values are case insensitive - SERVER_TYPE=jellyfin # the allowed types are: jellyfin, navidrome, subsonic. These values are case insensitive
- SERVER_URL= # http://address:port or https://address:port - SERVER_URL= # http://address:port or https://address:port
- LEGACY_AUTHENTICATION=false # When SERVER_LOCK is true, sets the legacyauth flag for server authentication (true or false) - LEGACY_AUTHENTICATION=false # When SERVER_LOCK is true, sets the legacyauth flag for server authentication (true or false)
- ANALYTICS_DISABLED=false # Set to true to disable Umami analytics tracking
ports: ports:
- 9180:9180 - 9180:9180
# Alternatively, to restrict to only localhost, - 127.0.0.1:9180:8190 # Alternatively, to restrict to only localhost, - 127.0.0.1:9180:8190