Lucas Basquerotto
Lucas Basquerotto
In my case I got such errors because I'm using MaterialUI and I was using `StyledEngineProvider` (`@mui/material`) as a child of `AppRouterCacheProvider` (`@mui/material-nextjs/v13-appRouter`). Making `StyledEngineProvider` a parent of `AppRouterCacheProvider` solved...
@dongting It seems yours is not the same scenario, as you are syncing the entire folder, instead of using a file prefix in the folder, like `aws s3 sync s3:////test_data/test-file-...
Thanks for the feedback. I will define the version 8.11.1 in the next website update, and will see if the issue is solved.
@bbottema I updated the website with the version `8.11.1` today, and about after 40 minutes I received the following error twice: ```log 2024-06-14 09:22:47,282 ERROR [org.simplejavamail.internal.util.concurrent.NamedRunnable] (Simple Java Mail async...
@bbottema Another exception that happened after updating (`Can't send command to SMTP host`): ```log 2024-06-14 09:43:29,356 ERROR [org.simplejavamail.internal.util.concurrent.NamedRunnable] (Simple Java Mail async mail sender, executor 1 / thread 24981) Failed...
@bbottema Ok, thanks!
In my case, I wanted to return a figure (to be appended to an array and generate a PDF of all figures with matplotlib `PdfPages`) and I saw some examples...
@thaJeztah Thanks, that's good to know. Is there some documentation about that? In the docs I have only found (at https://docs.docker.com/engine/reference/builder/#volume) that: > Changing the volume from within the Dockerfile:...
Hi, @nevets963 Unfortunately I found nothing to help this problem. Normally, when I discover that there's a container with anonymous volumes (when I see random named volumes, for example, running...
@nevets963 Yes, directories defined as VOLUME's in a Dockerfile won't create anonymous volumes if they are explicitly mapped to the host. **Example:** _Dockerfile:_ ```Dockerfile FROM ubuntu:20.04 VOLUME /var/test ``` Build...