- install podman desktop
- Since docker-compose uses DOCKER_HOST, you need to point it to the Podman socket:
echo 'export DOCKER_HOST=unix:///run/user/$UID/podman/podman.sock' >> ~/.zshrc
source ~/.zshrc
- go to docker hub and create Personal access tokens, if you do not have an account, sign up
- generate new personal access token -> name it "podman" -> public access -> create
- open terminal and type: podman login docker.io
- copy info and submit
- install podman compose:
brew install podman-compose
podman system service --time=0 &
podman info
# rebuild images and start
podman-compose -f compose.yml build
podman-compose -f compose.yml up
previous tutorial should resolve this problem:
[+] Running 0/2: FROM php:7.4-fpm AS base
⠋ Service composer Building 1.0s
⠋ Service php Building 1.0s
creating build container: initializing source docker://php:7.4-fpm: unable to retrieve auth token: invalid username/password: unauthorized: your account must log in with a Personal Access Token (PAT) - learn more at docs.docker.com/go/access-tokens
if you still see some issues try to manuall pull the image
podman pull docker.io/library/php:7.4-fpm