Run Ace Stream server only via Docker
masterIf you only need the AceStream engine without the Ace Link menu bar UI, you can run it as a standalone Docker container.
To run the engine with default settings:
docker run --platform=linux/amd64 --rm -p 6878:6878 blaiseio/acelinkOnce running, you can access streams in a media player using these URL formats:
http://<network ip>:6878/ace/getstream?id=<acestream id>http://<network ip>:6878/ace/getstream?infohash=<magnet uri>
To run the engine using a custom acestream.conf file, mount the configuration file into the container:
docker run --platform=linux/amd64 --rm -p 6878:6878 -v "$(pwd)/acestream.conf:/opt/acestream/acestream.conf" blaiseio/acelink