Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,23 @@ mvn clean install
To work with docker, is only necessary that docker engine is running, by default Testcontainers use docker engine.

# Quarkus + Testcontainers + Podman Setup on macOS

This README explains how to run a Quarkus application using Testcontainers while using Podman instead of Docker on macOS.

### Control podman socket
if you want, you can enter inside the podman machine and check if podman socket is active, to make it, you can run the next command.
```shell
podman machine ssh
```
inside the podman machine you can run the next command:
```shell
systemctl status podman.socket
```

If status is disabled, you can run the next command to activate the podman socket, after run this command you can try again the previous command to verify the status.
```shell
sudo systemctl enable --now podman.socket
```

---

## 1. Configure Testcontainers
Expand Down