M. Gschwandtner

Results 8 comments of M. Gschwandtner

> I don't know why there aren't ... did this for a couple of my own images a while ago, setup + publishing is basically this: install https://github.com/docker/buildx ``` #...

Changing the Volume mount to an absolute path might fix the Problem: `-v home//Apps/memos/data:/var/opt/memos` Has a similar issue with a container using `~/...` a while ago. Sadly, can't reproduce the...

This is intended behavior, as far as I know, I don't believe this is mentioned in the wiki tough. Adding it under: “Syntaxes > Something special > 2.”, would be...

Setting "toastContainerLeft" to a fixed value seems to fix the position, items removed at the same time are still on top of one another. I just used this: `--toastContainerLeft: calc(100vw...

Not sure is this is the same situation / related, but I was getting a similar error. ![Screenshot from 2024-07-19 21-11-43](https://github.com/user-attachments/assets/9c72d876-762b-4692-99f3-d49768ae3e37) Reason: - starting nuxt from parent directory via make...

you can override it in your compose file as a temporary fix ``` services: undb: ports: - 127.0.0.1:3015:3721 volumes: - data:/usr/src/app/.undb container_name: undb image: ghcr.io/undb-io/undb:latest entrypoint: ./undb ``` > https://docs.docker.com/get-started/docker-concepts/running-containers/overriding-container-defaults/#override-the-default-cmd-and-entrypoint-in-docker-compose

Ignores the warning thrown if the array key is not set: > https://www.php.net/manual/en/language.operators.errorcontrol.php (Error Control Operators) Since the value is set to PID 1 and the warning isn't needed.

Thanks, i'm using PHP 8.1 with t3 v12 and error reporting in dev mode. > Maybe an older PHP Version or t3 set to ignore warnings? `isset(...` should still throw...