kannon/docker/docker_config.json

42 lines
766 B
JSON
Raw Normal View History

{
"server": {
"enabled": true,
"listen": "0.0.0.0",
"port": 3000,
"heartbeat": 10000
},
"api": {
"enabled": true,
"listen": "0.0.0.0",
"port": 3002
},
"log": {
"level": "debug",
"timestamp": "DD.MM.YYYY HH:mm:ss:SS"
},
"library": {
"enabled": true,
"sources": [
2022-06-02 15:27:43 +02:00
"/mnt/samsung/music"
],
"formats": [
"mp3",
"flac"
]
},
"database": {
"dialect": "postgres",
"host": "kannon-postgres",
"port": 5432,
"database": "kannon",
"username": "kannon",
"password": "kannon"
},
"audio": {
"listen": "0.0.0.0",
"port": 3001,
"nodelay": false,
"threshold": 10
}
2022-06-02 15:27:43 +02:00
}