fix: update mice service image version and port configuration in docker-compose

This commit is contained in:
2025-07-12 18:27:00 +00:00
committed by GitHub
parent f09ac2a535
commit 6e4a320097
2 changed files with 26 additions and 8 deletions

View File

@@ -3,7 +3,7 @@ version: '3.8'
services: services:
mice: mice:
container_name: mice-public container_name: mice-public
image: sillyangel/mice:2025.07.10 image: sillyangel/mice:dev-latest
ports: ports:
- "40625:40625" - "40625:40625"
environment: environment:

View File

@@ -2,9 +2,10 @@ version: '3.8'
services: services:
mice: mice:
image: sillyangel/mice:latest container_name: mice-public
image: sillyangel/mice:dev-latest
ports: ports:
- "${HOST_PORT:-3000}:${PORT:-3000}" - "40625:40625"
environment: environment:
# Navidrome Server Configuration # Navidrome Server Configuration
# These will be injected at runtime using the entrypoint script # These will be injected at runtime using the entrypoint script
@@ -13,13 +14,12 @@ services:
- NEXT_PUBLIC_NAVIDROME_PASSWORD=${NAVIDROME_PASSWORD:-} - NEXT_PUBLIC_NAVIDROME_PASSWORD=${NAVIDROME_PASSWORD:-}
# PostHog Analytics (optional) # PostHog Analytics (optional)
- NEXT_PUBLIC_POSTHOG_KEY=${POSTHOG_KEY:-} # - NEXT_PUBLIC_POSTHOG_KEY=phc_Sa39J7754MwaHrPxYiWnWETVSD3g1cU4nOplMGczRE9
- NEXT_PUBLIC_POSTHOG_HOST=${POSTHOG_HOST:-} # - NEXT_PUBLIC_POSTHOG_HOST=https://us.i.posthog.com
# Application Port # Application Port
- PORT=${PORT:-3000} - PORT=40625
# Optional: Add a health check
healthcheck: healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:40625"] test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:40625"]
interval: 30s interval: 30s
@@ -28,3 +28,21 @@ services:
start_period: 40s start_period: 40s
restart: unless-stopped 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