Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xcaff/docker-koel
A minimal docker image for the koel music streaming server.
https://github.com/0xcaff/docker-koel
docker koel
Last synced: about 2 months ago
JSON representation
A minimal docker image for the koel music streaming server.
- Host: GitHub
- URL: https://github.com/0xcaff/docker-koel
- Owner: 0xcaff
- License: mit
- Created: 2017-12-06T00:02:55.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-03T15:20:36.000Z (about 5 years ago)
- Last Synced: 2024-08-04T01:10:08.025Z (5 months ago)
- Topics: docker, koel
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/0xcaff/koel/
- Size: 20.5 KB
- Stars: 34
- Watchers: 3
- Forks: 32
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
docker-koel
===========[![automated-build-badge]][docker-hub]
A docker image with only the bare essentials needed to run [koel]. It includes
apache and a php runtime with required extensions.Usage
-----First start the koel server with a mysql database and music storage volume.
docker run --name koel -p 80:80 -it 0xcaff/koel
On the first run, if the `.env` file isn't created, it will be created and the
`APP_KEY` variable will be populated.Compose
-------[docker-compose] can be used to start koel along with its depdencies. Just run.
docker-compose up
On the first start (after an upgrade or initial installation), the database
needs to be migrated. Run koel init with `docker exec` in the koel runtime
container:docker-compose exec koel php artisan koel:init
Check out the [`./docker-compose.yml`][compose] file for more information.
[dbConfig]: https://github.com/phanan/koel/blob/baa5b7af13e7f66ff1d2df1778c65757a73e478f/config/database.php
[koel]: https://koel.phanan.net/
[compose]: ./docker-compose.yml[docker-compose]: https://docs.docker.com/compose/
[automated-build-badge]: https://img.shields.io/docker/automated/0xcaff/koel.svg
[docker-hub]: https://hub.docker.com/r/0xcaff/koel/