Skip to content

Instantly share code, notes, and snippets.

@landsman
Last active February 8, 2025 18:03
Show Gist options
  • Save landsman/005f5d9d10c888fc1bf4515bb48f738d to your computer and use it in GitHub Desktop.
Save landsman/005f5d9d10c888fc1bf4515bb48f738d to your computer and use it in GitHub Desktop.

how to setup podman on macOS

  • 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

enable podman daemon for docker

podman system service --time=0 &
podman info

using podman

# rebuild images and start 
podman-compose -f compose.yml build
podman-compose -f compose.yml up

troubleshooting

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment