This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-04-23 14:38:13 +02:00
|
|
|
version: '2.4'
|
2021-01-10 14:50:14 +01:00
|
|
|
|
|
|
|
services:
|
|
|
|
app:
|
2021-04-23 14:38:13 +02:00
|
|
|
# This repository sadly only has a 'latest' flag
|
2021-01-10 14:50:14 +01:00
|
|
|
image: 'hyzual/koel:latest'
|
|
|
|
restart: 'always'
|
|
|
|
|
2021-04-23 14:38:13 +02:00
|
|
|
healthcheck:
|
|
|
|
test: 'curl -f localhost:80 || exit 1'
|
|
|
|
interval: '1m'
|
|
|
|
timeout: '10s'
|
|
|
|
retries: 3
|
|
|
|
start_period: '10s'
|
2021-01-10 14:50:14 +01:00
|
|
|
depends_on:
|
2021-04-23 14:38:13 +02:00
|
|
|
db:
|
|
|
|
# Haven't found a good MySQL healthcheck yet
|
|
|
|
condition: 'service_started'
|
|
|
|
|
2021-01-10 14:50:14 +01:00
|
|
|
networks:
|
|
|
|
- 'default'
|
|
|
|
- 'nginx'
|
|
|
|
volumes:
|
2021-01-10 15:16:42 +01:00
|
|
|
- './.env:/var/www/html/.env'
|
2021-01-10 14:50:14 +01:00
|
|
|
- 'covers:/var/www/html/public/img/covers'
|
|
|
|
- 'music:/music'
|
|
|
|
|
|
|
|
db:
|
2021-04-23 14:38:13 +02:00
|
|
|
image: 'mysql:8.0.24'
|
2021-01-10 14:50:14 +01:00
|
|
|
restart: 'always'
|
|
|
|
command: '--default-authentication-plugin=mysql_native_password'
|
|
|
|
|
|
|
|
environment:
|
|
|
|
- 'MYSQL_DATABASE=koel'
|
2021-04-23 14:38:13 +02:00
|
|
|
- 'MYSQL_USER=koel'
|
|
|
|
- 'MYSQL_PASSWORD=koel'
|
|
|
|
- 'MYSQL_RANDOM_ROOT_PASSWORD=yes'
|
2021-01-10 14:50:14 +01:00
|
|
|
volumes:
|
|
|
|
- 'db-data:/var/lib/mysql'
|
|
|
|
|
|
|
|
networks:
|
|
|
|
nginx:
|
|
|
|
external: true
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
covers:
|
|
|
|
db-data:
|
|
|
|
music:
|