metadata-remote
547Web-based audio metadata editor for headless servers.
#audio #metadata #editor #Screenshots
2025-11-14
2025-11-14
Getting Started
- Create a folder and move to the folder
mkdir metadata-remote && cd metadata-remote - Create a
docker-compose.ymlfile and add the following content:docker-compose.ymlservices: metadata-remote: image: ghcr.io/wow-signal-dev/metadata-remote:latest container_name: metadata-remote ports: - "8338:8338" volumes: - metadata-remote_data:/music environment: - PUID=1000 - PGID=1000 restart: unless-stopped filebrowser: image: filebrowser/filebrowser container_name: filebrowser ports: - "9999:80" environment: - FB_NOAUTH=true volumes: - metadata-remote_data:/srv - filebrowser_database:/database volumes: metadata-remote_data: filebrowser_database: - Start the service using docker compose
docker compose up -d - Open the browser and go to http://localhost:8338 to access the Metadata Remote.
NOTE: To upload files, go to http://localhost:9999. The data will be stored in the /music directory.