Here are the steps to get this tool running in your docker instance with Docker Compose
- Create a folder for OnAirr and move into it
- In your OnAirr folder, make a new folder named
app - In the
appfolder, copy the contents of the.env.examplefile into a file named.env - Edit the
.envfile with your server address, X-Plex-Token, and bool for clickable links - Back in your OnAirr folder, save the below as
docker-compose.yml
services:
onairr:
container_name: onairr
image: jma1ice/onairr:latest
restart: unless-stopped
volumes:
- ./app/.env:/app/.env
ports:
- 2477:2477- In the terminal of your choice, navigate to your OnAirr directory and run
docker compose up -d
The dashboard will be available at localhost:2477