AzuraCast â
WARNING
AzuraCast installation cannot be run simply by copy and pasting the docker-compose file due to some initialization steps that their docker.sh utility script will do to initialize database. So we have to clone the repository to Unraid host and run it. Once run we will then create a Stack manually on Unraid so that we can view log, shell access and enable it to start on boot.
Setup AzuraCast Folder on Unraid Host â
Create a dir at /mnt/user/appdata/AzuraCast
mkdir /mnt/user/appdata/AzuraCast
Also create a git
folder where we will download AzuraCast source code.
mkdir /mnt/user/appdata/AzuraCast/git
Download AzuraCast source code.
cd mkdir /mnt/user/appdata/AzuraCast/git
git clone https://github.com/AzuraCast/AzuraCast
Install AzuraCast â
Use their docker utility script under the cloned repository to install AzuraCast. See https://www.azuracast.com/docs/administration/docker/#docker-utility-script for more details about what the script can do.
./docker.sh install
The install script will prompt the following:
- Select
Rolling Release
instead ofStable Release
for latest update. - Choose a non-standard port for web (default: 80), https (default: 443), sftp (default: 2223) or the port range for broadcast services. In my case, I choose the following:
- Web: 80 â 280
- HTTPS: 443 â 2443
- SFTP: 2223 (same)
- Port Range: 8000âĻ â 18000âĻ
Once installed, copy and paste the .env
, azuracast.env
and docker-compose.yml
to /mnt/user/appdata/AzuraCast
where we will create our docker compose stack on Unraid.
AZURACAST_ROOT_DIR=/mnt/user/appdata/AzuraCast
cp /mnt/user/appdata/AzuraCast/git/AzuraCast/.env ${AZURACAST_ROOT_DIR}
cp /mnt/user/appdata/AzuraCast/git/AzuraCast/azuracast.env ${AZURACAST_ROOT_DIR}
cp /mnt/user/appdata/AzuraCast/git/AzuraCast/docker-compose.yml ${AZURACAST_ROOT_DIR}
Inspect docker-compose.yml
and it should have the following content.
Manually start the docker stack using docker-compose
to verify it all works.
docker-compose up
Result
Also check the /mnt/user/appdata/AzuraCast
folder to make sure it has the following folders/files.
First-Time Setup â
Open your browser and visit https://<UNRAID_NAS_IP>:2443
if you changed the HTTPS port from 443 to 2443, otherwise visit https://<UNRAID_NAS_IP>
You should see the following first-time setup screen. Follow the wizard to create.
Create Docker Stack on Unraid â
Visit Unraid homepage then select DOCKER
. Scroll to the bottom of the page and click Add New Stack
.
Fill in the following:
By setting the stack directory to /mnt/user/appdata/AzuraCast
, Unraid will create a docker-compose.yml
there.
Console or SSH into Unraid, then check if the content of that file is the same as before.
nano /mnt/user/appdata/AzuraCast/docker-compose.yml
Also enable the Auto Start
toggle button to automatically start the container when Unraid restart.
Click Compose Up
button to Start the stack.
Scroll up and you should see a new container named azuracast
being started. Check container logs to verify it doesnât hang during initialization.
About Ports â
Three ports are reserved for viewing AzureCast home page. The rest of the ports is used for each station IceCast v2 broadcast station.
- HTTP (default: 80): AzuraCast home page without HTTPS/TLS
- HTTPS (default: 443): TLS protected AzuraCast home page
- SFTP (default: 2223): For uploading media files to AzuraCast station
Station â
Create Station â
Go to System Administration > Station
Click the + Add Station
button.
Fill in the numbered fields as needed.
Enable Song Requests if you want your listening to select a song from a list to play next after the currently playing track.
Set the Base Station Directory so that the station name is created following this name. We will later mount external music folder to this folder as media files.
Click Save Changes
to finish creating the station.
Internally you should see a new folder created inside the container for this new station.
My test
station dashboard.
Example of a default Station public page.
Mounting External Music Folder to AzuraCast Station â
Each station media is stored in /var/azuracast/stations/<STATION_NAME>/media
inside the container. So if I have a station named test
, I would mount that folder from host into /var/azuracast/stations/test/media
.
To mount an existing shared folder on Unraid to the station, simply add another volume mapping under docker-compose.yml
volume
stanza.
Following is how I mount my music folder on my unraid at /mnt/user/Music/music-unsorted
to a AzuraCast station named test
.
Example of mounting more folders from unraid shared folder to more stations. I add a :ro
suffix after each volume row so that these folder are mounted in read-only permission.
Click Compose Up
button after making any changes to the docker-compose manifest to restart the container.
Once AzuraCast dashboard is accessible, visit System Administration > System Maintainance > Storage Locations
to verify the folder is being added.
Select Media > Music Files
from the left sidebar, and you should see it picked up the folders. If you click on each folder and inspect the music file, it will show as Processing
. Wait a while for it to process all music files from that mounted folder.
Inspecting Media Processing Progress â
It is useful to view the container log when AzuraCast is processing the media file. In my case, my AzuraCast container log shows OOM or Out of Memory error if the media folder contains too many songs, e.g. more than 10k. In that case, read the FAQ section on OOM issue to increase the PHP Memory limit from the default 128MB to GB.
Broadcast Station â
By default each station came with IceCast v2 on. Each station will take up one port.
Go to Station > Edit Profile > Broadcasting
section to see the default assigned broadcasting port.
Since we run AzuraCast inside container, we have to later map each container port to host port.
In my setup, I simply add a 1
before each container port, e.g. container port 8000 would be mapped to host port 18000.
If you use CloudFlare Tunnel to expose these ports, make sure to expose each host port individually.
Customize Station â
Customize public pages background â
Go to Station > Profile > Branding
, then select a Public Page Background
.
With custom Branding background image.
Add More Music Bitrate â
You can set the default streaming bitrate for each station. Default is 128kbps.
Go to Manage Station > Broadcasting > Mount Points
Click Edit
then
Or stream lossless.
Example of two mount points: MP3 (128kbps) and FLAC
These are later selectable in the station Public page by your listener.
Enable On-Demand Media â
You can also enable on-demand media streaming for a station so that your requester can playback any songs in that station. This is a separate webpage, with URL of http://IP/public/<STATION_NAME>/ondemand
Go to Station > Edit Profile
. Then toggle On-Demand Streaming
button.
Example of a station profile with On-Demand Media enabled.
Example On-Demand Media public page.
FAQ â
No music playing even when the station is playing â
TIP
đĄ This only applies if you expose the service behind CloudFlare Tunnel.
@ref: https://github.com/AzuraCast/AzuraCast/discussions/6912
Go to System Administration > System Settings
.
Then enable Use Web Proxy for Radio
OOM Out of Memory Error when adding media folder is too large â
Edit /mnt/user/appdata/AzuraCast/azuracast.env
and set PHP_MEMORY_LIMIT
to any value in Gigabyte range to be safe.
Station List â
Following are the stations I created.
- Anime OST
- Classical
- Classical Crossover
- Electronic
- Game Doujin
- Game OST
- Game Touhou
- J-Pop
- K-Pop
- Movie BGM
- Movie Soundtrack
- New Age
- Praise & Worship