Skip to content

Podman SetupΒΆ

Set up InfraKitchen using Podman for local development.


πŸš€ Quick StartΒΆ

  1. Make sure you have Podman installed on your machine. You can download it from Podman's official website. Optionally, you may need to install podman-compose as well. Check the podman-compose repository for installation instructions.
  2. Clone the project repository to your local machine using Git.
  3. From root directory of the project, run the following command to copy the Docker Compose file and start the development environment:
Bash
cp docs/examples/docker/docker-compose.yml ./docker-compose.yml
podman compose up -d

Access at http://localhost:7777 and log in with Guest user.

Using podman-compose

If you have podman-compose installed, use podman-compose instead of podman compose.


πŸ› οΈ Common CommandsΒΆ

Bash
podman compose logs -f    # View logs
podman compose restart    # Restart services
podman compose down       # Stop all services
podman compose up -d      # Start services

πŸ› TroubleshootingΒΆ

Networking issues between containers:

You may encounter issues related to networking between containers when using Podman. If you face such issues try to stop and restart the containers:

Bash
podman compose down && podman compose up -d

➑️ Next Steps¢