Update README.md

This commit is contained in:
Collin Kasbergen
2026-07-22 13:47:42 +02:00
parent 9bf0dcd72e
commit 52b7c93b0f
+1 -3
View File
@@ -40,7 +40,6 @@ services:
restart: unless-stopped restart: unless-stopped
ports: ports:
- "8080:8080" # The Admin Panel & Web UI - "8080:8080" # The Admin Panel & Web UI
- "8000:8000" # The Icecast Audio Stream
volumes: volumes:
- ./data:/data - ./data:/data
environment: environment:
@@ -61,7 +60,6 @@ If you prefer the command line over YAML:
docker run -d \ docker run -d \
--name navifm \ --name navifm \
-p 8080:8080 \ -p 8080:8080 \
-p 8000:8000 \
-v ./data:/data \ -v ./data:/data \
-e DATA_DIR=/data \ -e DATA_DIR=/data \
-e TZ=America/New_York \ -e TZ=America/New_York \
@@ -84,7 +82,7 @@ docker run -d \
1. **Setup:** On first boot, you'll visit the Web UI and link your Navidrome server. 1. **Setup:** On first boot, you'll visit the Web UI and link your Navidrome server.
2. **Analysis:** The background worker pulls 200 random tracks and runs them through an audio analyzer. (It waits patiently until at least 10 tracks are analyzed before starting the radio to prevent queue looping.) 2. **Analysis:** The background worker pulls 200 random tracks and runs them through an audio analyzer. (It waits patiently until at least 10 tracks are analyzed before starting the radio to prevent queue looping.)
3. **Broadcasting:** The backend feeds the smartest next track into Liquidsoap, which encodes it and pumps it out to Icecast. 3. **Broadcasting:** The backend feeds the smartest next track into Liquidsoap, which encodes it and pumps it out to Icecast.
4. **Listening:** Tune in via the web player, VLC, or any internet radio app pointing to `http://your-server:8000/radio`. 4. **Listening:** Tune in via the web player, VLC, or any internet radio app pointing to `http://your-server:8080/stream`.
--- ---