-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
28 lines (27 loc) · 880 Bytes
/
Copy pathdocker-compose.dev.yml
File metadata and controls
28 lines (27 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Development docker-compose for Yandex Station
# Runs a local Music Assistant instance with Yandex Station provider pre-loaded.
#
# Usage:
# docker compose -f docker-compose.dev.yml up # foreground
# docker compose -f docker-compose.dev.yml up -d # background
# docker compose -f docker-compose.dev.yml down # stop
# docker compose -f docker-compose.dev.yml logs -f # follow logs
#
# UI: http://localhost:8095
# Note: add .ma-data/ to your .gitignore
services:
ma:
image: ghcr.io/music-assistant/server:nightly
ports:
- "8095:8095"
- "8097:8097"
- "8099:8099"
- "8927:8927"
privileged: true
restart: "no"
volumes:
- ./.ma-data:/data
- ./provider/:/tmp/provider:ro
- ./pyproject.toml:/tmp/pyproject.toml:ro
- ./scripts/docker-init.sh:/init.sh:ro
entrypoint: ["/bin/sh", "/init.sh"]