Lissy93 / dashy

🚀 A self-hostable personal dashboard built for you. Includes status-checking, widgets, themes, icon packs, a UI editor and tons more!
https://dashy.to
MIT License
18.12k stars 1.37k forks source link

[BUG] cant access #1741

Closed Fuckingnameless closed 1 week ago

Fuckingnameless commented 1 week ago

Environment

Self-Hosted (Docker)

System

No response

Version

No response

Describe the problem

cant access anything on ip:4000 or localhost:4000 logs are empty

---
# https://dashy.to/
services:
  dashy:
    # To build from source, replace 'image: lissy93/dashy' with 'build: .'
    # build: .
    image: ghcr.io/lissy93/dashy:latest
    container_name: Dashy
    # Pass in your config file below, by specifying the path on your host machine
    # volumes:
    # - ${PATH_TO_APPDATA}/Dashy/Dashy.yml:/app/public/conf.yml
    ports:
      - 4000:80
    # Set any environmental variables
    environment:
      - NODE_ENV=production
    # Specify your user ID and group ID. You can find this by running `id -u` and `id -g`
      - UID=1019
      - GID=1019
    # Specify restart policy
    restart: unless-stopped
    # Configure healthchecks
    healthcheck:
      test: ['CMD', 'node', '/app/services/healthcheck']
      interval: 1m30s
      timeout: 10s
      retries: 3
      start_period: 40s

Additional info

No response

Please tick the boxes

Fuckingnameless commented 1 week ago

the 4000:80 port mapping was set by openmediavault examples repo for docker compose and was the issue