beanbeanjuice
beanbeanjuice
Explore posts from servers
HHomarr
Created by beanbeanjuice on 12/29/2024 in #💬・get-help
Do the boards still have different mobile/desktop views or do I need to create separate boards?
5 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
v1 Beta - Server Error When Not Logged In
I wanted to try something so I headed over to dashboard.somedomain.com/auth/login and it brought up the login screen. So it seems if you're not logged in, it does not work. Logging in fixed the issue, but it looks like it causes that error when there is no session.
8 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
v1 Beta - Server Error When Not Logged In
This occurs when I visit the base link which is dashboard.somedomain.com However, I'm unsure why Firefox works. I believe it is because I am signed in with a session, judging from the error logs it looks like since I didn't log in with those other browsers it isn't working.
8 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Tiles Not Saving Properly in Beta
I see... Thank you! I thought I was going crazy
15 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Dash. Integration Not Working in Beta
Yes, except it works fine regardless if its enabled/disabled for Server #3 which uses cloudflare tunnel
21 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Dash. Integration Not Working in Beta
It's weird, Server #3 (cloudflare tunnel) works without commenting out the environment variable.
21 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Tiles Not Saving Properly in Beta
I'm using Firefox Developer and here's my docker compose
beanbeanjuice-dashboard:
container_name: beanbeanjuice-dashboard
image: ghcr.io/homarr-labs/homarr:beta
restart: unless-stopped
volumes:
- /home/beanbeanjuice/projects/homarr:/appdata
networks:
- nginx-network
depends_on:
- beanbeanjuice-dashdot
beanbeanjuice-dashboard:
container_name: beanbeanjuice-dashboard
image: ghcr.io/homarr-labs/homarr:beta
restart: unless-stopped
volumes:
- /home/beanbeanjuice/projects/homarr:/appdata
networks:
- nginx-network
depends_on:
- beanbeanjuice-dashdot
15 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Tiles Not Saving Properly in Beta
No description
15 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Tiles Not Saving Properly in Beta
No description
15 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Dash. Integration Not Working in Beta
Nonetheless, CPU temps aren't super important for me but yeah I'm glad it's working now. If you need me to debug further to get CPU temps working please let me know!
21 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Dash. Integration Not Working in Beta
How odd...
21 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Dash. Integration Not Working in Beta
Disabling fixed it!
21 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Dash. Integration Not Working in Beta
Hey! I have this here as my configuration for Server #1 and Server #2 (everything is the same aside from the container name)
beanbeanjuice-dashdot:
container_name: beanbeanjuice-dashdot
image: mauricenino/dashdot:latest
restart: unless-stopped
privileged: true
volumes:
- /:/mnt/host:ro
environment:
DASHDOT_ENABLE_CPU_TEMPS: 'true'
networks:
- nginx-network
beanbeanjuice-dashdot:
container_name: beanbeanjuice-dashdot
image: mauricenino/dashdot:latest
restart: unless-stopped
privileged: true
volumes:
- /:/mnt/host:ro
environment:
DASHDOT_ENABLE_CPU_TEMPS: 'true'
networks:
- nginx-network
Server #3 has this configuration
services:
dashdot:
container_name: dashdot
image: mauricenino/dashdot:latest
restart: unless-stopped
privileged: true
volumes:
- /:/mnt/host:ro
environment:
DASHDOT_ENABLE_CPU_TEMPS: 'true'
networks:
- cloudflare-network

networks:
cloudflare-network:
name: cloudflare-network
external: true
services:
dashdot:
container_name: dashdot
image: mauricenino/dashdot:latest
restart: unless-stopped
privileged: true
volumes:
- /:/mnt/host:ro
environment:
DASHDOT_ENABLE_CPU_TEMPS: 'true'
networks:
- cloudflare-network

networks:
cloudflare-network:
name: cloudflare-network
external: true
It seems as though CPU temps is already enabled, i'll try disabling and seeing if that makes a difference
21 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Dash. Integration Not Working in Beta
fixed this issue by doing this;
location / {
proxy_pass http://beanbeanjuice-dashboard:7575/;
#include proxy_params;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
location / {
proxy_pass http://beanbeanjuice-dashboard:7575/;
#include proxy_params;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
However, the issues above still persist
21 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Dash. Integration Not Working in Beta
No description
21 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Dash. Integration Not Working in Beta
Using this YML produces the same result
beanbeanjuice-dashboard:
container_name: beanbeanjuice-dashboard
image: ghcr.io/homarr-labs/homarr:beta
restart: unless-stopped
volumes:
- /home/beanbeanjuice/projects/homarr:/appdata
networks:
- nginx-network
# - default
depends_on:
- beanbeanjuice-dashdot
beanbeanjuice-dashboard:
container_name: beanbeanjuice-dashboard
image: ghcr.io/homarr-labs/homarr:beta
restart: unless-stopped
volumes:
- /home/beanbeanjuice/projects/homarr:/appdata
networks:
- nginx-network
# - default
depends_on:
- beanbeanjuice-dashdot
21 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Dash. Integration Not Working in Beta
beanbeanjuice-dashboard:
container_name: beanbeanjuice-dashboard
image: ghcr.io/homarr-labs/homarr:beta
restart: unless-stopped
volumes:
- /home/beanbeanjuice/projects/homarr:/appdata
networks:
- nginx-network
- default
depends_on:
- beanbeanjuice-dashdot
beanbeanjuice-dashboard:
container_name: beanbeanjuice-dashboard
image: ghcr.io/homarr-labs/homarr:beta
restart: unless-stopped
volumes:
- /home/beanbeanjuice/projects/homarr:/appdata
networks:
- nginx-network
- default
depends_on:
- beanbeanjuice-dashdot
21 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Dash. Integration Not Working in Beta
No description
21 replies
HHomarr
Created by beanbeanjuice on 12/18/2024 in #💬・get-help
Dash. Integration Not Working in Beta
No description
21 replies
PPrisma
Created by beanbeanjuice on 12/10/2024 in #help-and-questions
Previously Working Dockerfile No Longer Works
Actually this is half of what I did to get it to work!
13 replies