You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running on an older Mac (x86_64), I have docker and podman installed, yet I am only using podman.
When I run podman compose up, I'm seeing an error from docker-compose being invoked.
Looking at man podman-compose the use of docker-compose seems normal and expected.
Error is below, looks like we need to tweak syntax of compose.yaml so it can work with both docker-compose and podman-compose.
$ time podman compose up
>>>> Executing external compose provider "/usr/local/bin/docker-compose". Please refer to the documentation for details. <<<<
WARNING: The POSTGRES_USER variable is not set. Defaulting to a blank string.
ERROR: The Compose file './compose.yaml' is invalid because:
services.kai.environment.DEMO_MODE contains false, which is an invalid type, it should be a string, number, or a null
Error: executing /usr/local/bin/docker-compose up: exit status 1
podman compose up 0.39s user 0.17s system 44% cpu 1.253 total
$ which podman
/usr/local/bin/podman
[jmatthews] in ~/git/jwmatthews/kai (main) $ podman compose version
>>>> Executing external compose provider "/usr/local/bin/docker-compose". Please refer to the documentation for details. <<<<
docker-compose version 1.29.2, build 5becea4c
docker-py version: 5.0.0
CPython version: 3.9.0
OpenSSL version: OpenSSL 1.1.1h 22 Sep 2020
$ which docker-compose
/usr/local/bin/docker-compose
$ docker-compose version
docker-compose version 1.29.2, build 5becea4c
docker-py version: 5.0.0
CPython version: 3.9.0
OpenSSL version: OpenSSL 1.1.1h 22 Sep 2020
The text was updated successfully, but these errors were encountered:
I am running on an older Mac (x86_64), I have docker and podman installed, yet I am only using podman.
When I run
podman compose up
, I'm seeing an error fromdocker-compose
being invoked.Looking at
man podman-compose
the use ofdocker-compose
seems normal and expected.Error is below, looks like we need to tweak syntax of compose.yaml so it can work with both docker-compose and podman-compose.
The text was updated successfully, but these errors were encountered: