You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Look at [this](https://forums.lyrion.org/forum/user-forums/general-discussion/1758009-sqeezebox-docker-configuration) thread for some context.
6
+
7
+
## Example configuration
8
+
9
+
### Custom asound.conf file
10
+
11
+
Create a file (it's not required it to be at /etc/asound.conf), similar to the following:
12
+
13
+
```text
14
+
ctl.equal {
15
+
type equal;
16
+
}
17
+
18
+
pcm.plugequal {
19
+
type equal;
20
+
slave.pcm "plughw:DAC";
21
+
}
22
+
23
+
pcm.equal {
24
+
type plug;
25
+
slave.pcm plugequal;
26
+
}
27
+
```
28
+
29
+
Replace the line that says `slave.pcm "plughw:DAC"` with your dac information. You might need to set something like `slave.pcm "plughw:0"`, `slave.pcm "plughw:1,0"`. YMMV.
30
+
Save the file as (e.g.) eq-asound.conf in the same directory where you are going to save your docker-compose.yaml file.
31
+
32
+
### Compose file
33
+
34
+
A simple compose file should look like the following:
0 commit comments