Files
spotipi/docker-compose.yml
T
2022-11-06 19:31:32 +01:00

31 lines
618 B
YAML

version: '3'
volumes:
cache:
services:
librespot:
image: librespot
build:
context: ./librespot
container_name: librespot
restart: unless-stopped
network_mode: host
volumes:
- ./librespot/config.toml:/app/config.toml
- cache:/app/cache
devices:
- /dev/snd:/dev/snd
librespot-to-mqtt:
image: librespot-to-mqtt
build:
context: ./librespot-to-mqtt
container_name: librespot-to-mqtt
restart: unless-stopped
network_mode: host
volumes:
- ./librespot-to-mqtt/secrets.mjs:/app/secrets.mjs
depends_on:
- librespot