Advertisement
spaceboy1337

Homarr not working

Apr 26th, 2024 (edited)
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. Docker compose setup:
  2.  
  3. version: '3'
  4. services:
  5. homarr:
  6. container_name: homarr
  7. image: ghcr.io/ajnart/homarr:latest
  8. security_opt:
  9. - no-new-privileges:true
  10. build:
  11. context: ./homarr
  12. env_file: ../.env
  13. restart: on-failure:5
  14. logging:
  15. driver: json-file
  16. options:
  17. max-file: ${DOCKERLOGGING_MAXFILE}
  18. max-size: ${DOCKERLOGGING_MAXSIZE}
  19. environment:
  20. # - PGID=${PGID}
  21. # - PUID=${PUID}
  22. - TZ=${TZ}
  23. # - NODE_ENV=production
  24. ports:
  25. - 7575:7575
  26. volumes:
  27. - /etc/localtime:/etc/localtime:ro
  28. - /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
  29. - ${DOCKERCONFDIR}/homarr/configs:/app/data/configs
  30. - ${DOCKERCONFDIR}/homarr/icons:/app/public/icons
  31. - ${DOCKERCONFDIR}/homarr/data:/data
  32.  
  33.  
  34. Read Console:
  35.  
  36. Retrieving "b5x-stateful-inline-icon" flag errored: timed out - falling back
  37. Failed to load resource: the server responded with a status of 500 (Internal Server Error)
  38. Unchecked runtime.lastError: A listener indicated an asynchronous response by returning true, but the message channel closed before a response was received
  39. Uncaught (in promise) Error: A listener indicated an asynchronous response by returning true, but the message channel closed before a response was received
  40. Failed to load resource: the server responded with a status of 500 (Internal Server Error)
  41.  
  42. Read logs:
  43.  
  44. Exporting hostname...
  45. Migrating database...
  46. yarn run v1.22.19
  47. $ ts-node ./migrate.ts
  48. Done in 15.73s.
  49. Starting production server...
  50. Listening on port 7575 url: http://192.168.0.6:7575
  51. Error: connect ECONNREFUSED 192.168.0.6:33589
  52. at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1571:16) {
  53. errno: -111,
  54. code: 'ECONNREFUSED',
  55. syscall: 'connect',
  56. address: '192.168.0.6',
  57. port: 33589
  58. }
  59. Error: connect ECONNREFUSED 192.168.0.6:33589
  60. at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1571:16) {
  61. errno: -111,
  62. code: 'ECONNREFUSED',
  63. syscall: 'connect',
  64. address: '192.168.0.6',
  65. port: 33589
  66. }
  67. Error: connect ECONNREFUSED 192.168.0.6:33589
  68. at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1571:16) {
  69. errno: -111,
  70. code: 'ECONNREFUSED',
  71. syscall: 'connect',
  72. address: '192.168.0.6',
  73. port: 33589
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement