This repository is part of a project aiming at containerizing the mmbTools software stack of Open Digital Radio.
This repository features the following components:
- Get this repository on your host
- Modify the file config/supervisor/encoders.conf to suit your needs. You can have more than 1 .conf file
- Review the content of the config/mot directory
- Declare your time zone:
TZ=your_time_zone (ex: TZ=Europe/Zurich)
- Create a docker network:
docker network create odr
- Run the container. Please note that the image uses port:
- 8001: supervisor web management interface
docker container run \ --name odr-encoders \ --detach \ --rm \ --network odr \ --publish 8001:8001 \ --env "TZ=${TZ}" \ --volume $(pwd)/config:/config \ opendigitalradio/encoders:latest \ /config
- Manage the encoders by pointing your web browser to
http://host_running_odr-encoders:8001