├── .gitignore ├── Dockerfile ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── docker-compose.test.yml ├── entrypoint.sh ├── mopidy.conf └── pulse-client.conf /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wernight/docker-mopidy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wernight/docker-mopidy/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wernight/docker-mopidy/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wernight/docker-mopidy/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wernight/docker-mopidy/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wernight/docker-mopidy/HEAD/docker-compose.test.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wernight/docker-mopidy/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /mopidy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wernight/docker-mopidy/HEAD/mopidy.conf -------------------------------------------------------------------------------- /pulse-client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wernight/docker-mopidy/HEAD/pulse-client.conf --------------------------------------------------------------------------------