Giter Site home page Giter Site logo

Comments (14)

hockwill avatar hockwill commented on September 28, 2024 1

When swapping the Dashy theme Colorful to Glass2 it is still functioning as expected. I was unable to duplicate this bug with the information provided. Using dashy:latest behind nginx reverse proxy to Firefox 128.0.
The Dev demo link seems to have the glass2 theme. Does the same thing happen there for you? https://dev.dashy.to/

I see in your compose you have the outside container directory for holding your config mounted to /app/public for Dashy 3 it is supposed to be /app/user-data per #1529 .

from dashy.

CrazyWolf13 avatar CrazyWolf13 commented on September 28, 2024 1

Hmm seems like you have some errors in your config, you can check it online on websites like yaml validator etc. If you mind you can also share it and we can take a look at it.

from dashy.

volrod64 avatar volrod64 commented on September 28, 2024 1

Holy that's stupid.
Everytime i restarted the container, I was doing CTRL + F5 on my firefox page.
But just to try, I did it in private mode. I had a whole " loading dashy " then .. working.
It's working on private mode, i just had to restart my browser and not just refresh the tab ....

Sorry for that !

from dashy.

volrod64 avatar volrod64 commented on September 28, 2024

Okay, the bug is coming with Glass 2 theme. I changed to default one and everything look fine ..
But I love glass 2 lol

from dashy.

volrod64 avatar volrod64 commented on September 28, 2024

When swapping the Dashy theme Colorful to Glass2 it is still functioning as expected. I was unable to duplicate this bug with the information provided. Using dashy:latest behind nginx reverse proxy to Firefox 128.0. The Dev demo link seems to have the glass2 theme. Does the same thing happen there for you? https://dev.dashy.to/

I see in your compose you have the outside container directory for holding your config mounted to /app/public for Dashy 3 it is supposed to be /app/user-data per #1529 .

Same bug on the dev.dashy.to .. Sound like a " me " problem.

from dashy.

CrazyWolf13 avatar CrazyWolf13 commented on September 28, 2024

Try turning off any extensions and opening the page in a private window/ different browser. This really sounds like an issue on your end.

from dashy.

volrod64 avatar volrod64 commented on September 28, 2024

When swapping the Dashy theme Colorful to Glass2 it is still functioning as expected. I was unable to duplicate this bug with the information provided. Using dashy:latest behind nginx reverse proxy to Firefox 128.0. The Dev demo link seems to have the glass2 theme. Does the same thing happen there for you? https://dev.dashy.to/

I see in your compose you have the outside container directory for holding your config mounted to /app/public for Dashy 3 it is supposed to be /app/user-data per #1529 .

Hi,
I did the change to my docker compose, reload it ... lost everything.
Thanksfully, I had a backup file
Here my actual docker compose

  dashy:
    image: lissy93/dashy:latest
    container_name: Dashy
    volumes:
      - /docker/appdata/dashy/config:/app/user-data
    ports:
      - "4000:8080"
    environment:
      - NODE_ENV=production
      - UID=1000
      - GID=1000
    restart: unless-stopped

image

I do have a conf.yml in /docker/appdata/dashy/config

/docker/appdata/dashy/config# ls -lhrt
total 8,0K
-rw-r--r-- 1 seb seb 7,4K 31 juil. 16:04 conf.yml

With a bunch of links and all my stuff in it.

May I ask for help ? Thanks :)

edit : docker logs
DONE Build complete. The dist directory is ready to be deployed.
INFO Check out deployment instructions at https://cli.vuejs.org/guide/deployment.html


Error: ENOENT: no such file or directory, stat '/app/user-data/conf.yml'
Error: ENOENT: no such file or directory, stat '/app/user-data/conf.yml'
Error: ENOENT: no such file or directory, stat '/app/user-data/conf.yml'
Error: ENOENT: no such file or directory, stat '/app/user-data/conf.yml'

So I did
docker exec -it Dashy /bin/ash

And I can cat /app/user-data/conf.yml with all my config stuff ..

from dashy.

CrazyWolf13 avatar CrazyWolf13 commented on September 28, 2024

Can you make sure the permissions are correct and UID and GUI 1000 has access, otherwise recreate the container without that.

As Dashy changed from running as root to non root.

from dashy.

volrod64 avatar volrod64 commented on September 28, 2024
  image: lissy93/dashy:latest
  container_name: Dashy
  volumes:
    - /docker/appdata/dashy/config:/app/user-data
  ports:
    - "4000:8080"
  environment:
    - NODE_ENV=production
  restart: unless-stopped
  
  
  root@netflix:/apps# ls -lhrt /docker/appdata/dashy/config
total 8,0K
-rw-r--r-- 1 seb seb 7,4K 31 juil. 16:04 conf.yml

conf got all my stuff.
Still the same error after doing docker-compose up -d
(I also tried to stop the container only, then start it again)

Thanks for taking time to help me, appreciate it !

from dashy.

volrod64 avatar volrod64 commented on September 28, 2024
/app/user-data # yarn validate-config
yarn run v1.22.19
$ node services/config-validator

Checking config file against schema...

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  Warning: 3 issues found in config file
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
1.  must NOT have additional properties (geInfo)
2. /appConfig/auth/oidc must have required property 'clientId'
3. /appConfig/auth/oidc must have required property 'endpoint'

Done in 0.29s

from dashy.

volrod64 avatar volrod64 commented on September 28, 2024

I sent my whole conf.yml into https://www.yamllint.com/
image

from dashy.

volrod64 avatar volrod64 commented on September 28, 2024

https://privatebin.net/?3c016a032abf25f7#FNtm4tYqNXazJFc68QNCePQhvLC14ZKdBMLna95BHawn

Config here !

from dashy.

CrazyWolf13 avatar CrazyWolf13 commented on September 28, 2024

That geInfo at the top seems a bit strange to me, is this a multi page?

Otherwise can you try removing it and validate again?

Otherwise it looks good to me.

from dashy.

volrod64 avatar volrod64 commented on September 28, 2024

I don't know what a multi page is, it was just the export of my working dashy_conf.yml that I did from the dashy menu.

I deleted the getInfo, didn't work either.

from dashy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.