From 6e4a320097e8b12383182c9b369ee283c5c70d60 Mon Sep 17 00:00:00 2001 From: angel Date: Sat, 12 Jul 2025 18:27:00 +0000 Subject: [PATCH] fix: update mice service image version and port configuration in docker-compose --- docker-compose.example.yml | 2 +- docker-compose.yml | 32 +++++++++++++++++++++++++------- 2 files changed, 26 insertions(+), 8 deletions(-) diff --git a/docker-compose.example.yml b/docker-compose.example.yml index 4969eb4..21d2684 100644 --- a/docker-compose.example.yml +++ b/docker-compose.example.yml @@ -3,7 +3,7 @@ version: '3.8' services: mice: container_name: mice-public - image: sillyangel/mice:2025.07.10 + image: sillyangel/mice:dev-latest ports: - "40625:40625" environment: diff --git a/docker-compose.yml b/docker-compose.yml index d32b6a3..31d924a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,9 +2,10 @@ version: '3.8' services: mice: - image: sillyangel/mice:latest + container_name: mice-public + image: sillyangel/mice:dev-latest ports: - - "${HOST_PORT:-3000}:${PORT:-3000}" + - "40625:40625" environment: # Navidrome Server Configuration # These will be injected at runtime using the entrypoint script @@ -13,13 +14,12 @@ services: - NEXT_PUBLIC_NAVIDROME_PASSWORD=${NAVIDROME_PASSWORD:-} # PostHog Analytics (optional) - - NEXT_PUBLIC_POSTHOG_KEY=${POSTHOG_KEY:-} - - NEXT_PUBLIC_POSTHOG_HOST=${POSTHOG_HOST:-} - + # - NEXT_PUBLIC_POSTHOG_KEY=phc_Sa39J7754MwaHrPxYiWnWETVSD3g1cU4nOplMGczRE9 + # - NEXT_PUBLIC_POSTHOG_HOST=https://us.i.posthog.com + # Application Port - - PORT=${PORT:-3000} + - PORT=40625 - # Optional: Add a health check healthcheck: test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:40625"] interval: 30s @@ -28,3 +28,21 @@ services: start_period: 40s restart: unless-stopped + + navidrome: + container_name: navidrome + image: deluan/navidrome:latest + ports: + - "4533:4533" + environment: + - ND_SCANINTERVAL=1m + - ND_LOGLEVEL=info + - ND_SESSIONTIMEOUT=24h + - ND_PORT=4533 + # - ND_BASEURL=/navidrome + # - ND_MUSICFOLDER=/music + volumes: + - navidrome_data:/data + - navidrome_music:/music + restart: unless-stopped +