From eeca717469f56401b112925af0668c2816627f0c Mon Sep 17 00:00:00 2001 From: Andrey Date: Fri, 9 Jan 2026 10:17:06 +0700 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20Readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Readme | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Readme diff --git a/Readme b/Readme new file mode 100644 index 0000000..401b980 --- /dev/null +++ b/Readme @@ -0,0 +1,23 @@ +mkdir ~/mstream && cd ~/mstream + +nano docker-compose.yml + +services: + mstream: + image: lscr.io/linuxserver/mstream:latest + container_name: mstream + environment: + - PUID=1000 + - PGID=1000 + - TZ=Asia/Krasnoyarsk + volumes: + - /root/mstream/config:/config + - /root/mstream/music:/music + ports: + - 4000:3000 + restart: unless-stopped + +docker compose up -d + +#upload files in /tmp +mv /tmp/*.mp3 /root/mstream/music/ \ No newline at end of file