awidjaja

Results 9 comments of awidjaja

@mkloubert Great job. The Kanban board look much neater now and the cards is organized in a folder that the user can configure. I can use it comfortably now. There...

I run the above as `root` user in the WSL2 host.

It is correct on the host. ```sh cat /etc/subuid podman:100000:65536 cat /etc/subgid podman:100000:65536 ``` Using the normal image ```sh `podman run --privileged -u podman:podman mgoltzsche/podman docker run alpine:latest echo hello...

What I have noticed: Edited: Please ignore this comment, it seems that I have mixed up podman info from the host instead of taking it from the minimal container. on...

Podman info on the podman host (root user) ```sh ociRuntime: name: runc package: Unknown path: /usr/local/bin/runc version: |- runc version 1.1.3 commit: v1.1.3-0-g6724737 spec: 1.0.2-dev go: go1.18.3 libseccomp: 2.5.2 ```...

@mgoltzsche , I tried running redhat's fedora version of the podman container on the same WSL2 distribution (based on your normal podman image), and it works. Maybe there's some configuration...

> I believe Podman officially supports `docker-compose`, so going through that should be fine. Installing docker-compose doesn't solve the issue because it is already deprecated by docker. Docker expect a...

May I know what argument was use in your test above for podman-compose? According to [this article](https://linuxhandbook.com/podman-compose/), podman-compose is compatible with docker-compose.yml without any change. `podman-compose up -d -f .nhost/docker-compose.yml`

Thanks both for clarifying. It's an issue with the `--project-directory` cli parameter that is not used in podman-compose. According to [this](https://docs.docker.com/compose/reference/#:~:text=When%20you%20use%20multiple%20Compose%20files%2C%20all%20paths%20in%20the%20files%20are%20relative%20to%20the%20first%20configuration%20file%20specified%20with%20%2Df.%20You%20can%20use%20the%20%2D%2Dproject%2Ddirectory%20option%20to%20override%20this%20base%20path.) docker compose cli reference, that parameter is for specific...