nghe icon indicating copy to clipboard operation
nghe copied to clipboard

issues logging in with

Open BlueEther opened this issue 7 months ago • 7 comments

Hi Having issues with both Amperly (ios) and Submariner (macos) connecting to a nghe docker container

Log:

Caused by:
    0: missing field `s`
    1: missing field `s`
2024-07-01T09:28:53.610985Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 500 Internal Server Error latency=0 ms
2024-07-01T09:28:53.772580Z ERROR nghe::open_subsonic::common::error: missing field `s`

Caused by:
    0: missing field `s`
    1: missing field `s`
2024-07-01T09:28:53.772599Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 500 Internal Server Error latency=0 ms
2024-07-01T09:29:11.407422Z ERROR nghe::open_subsonic::common::error: missing field `s`

Caused by:
    0: missing field `s`
    1: missing field `s`
2024-07-01T09:29:11.407441Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 500 Internal Server Error latency=0 ms

Docker:

services:
  nghe:
    image: ghcr.io/vnghia/nghe-musl:latest
    ports:
      - 3000:3000
    restart: unless-stopped
    environment:
      NGHE_DATABASE__URL: postgres://postgres:postgres@db:5432/postgres
      NGHE_DATABASE__KEY: nnnxxxnnnxxxnnnxxxnnnxxxnnnxxxnnn
    volumes:
      - /mnt/Media/Music/:/data/music/:ro
    depends_on:
      db:
        condition: service_healthy

  db:
    image: postgres:16
    environment:
      POSTGRES_PASSWORD: postgres
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U postgres"]
      interval: 5s
      timeout: 5s
      retries: 5

BlueEther avatar Jul 01 '24 09:07 BlueEther