Podman SetupΒΆ
Set up InfraKitchen using Podman for local development.
π Quick StartΒΆ
- 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-composeas well. Check the podman-compose repository for installation instructions. - Clone the project repository to your local machine using Git.
- 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ΒΆ
- π οΈ Platform Engineer Guide β Step-by-step setup for platform teams.
- π©βπ» Developer Guide β How to provision resources as a developer.
- π§© Core Concepts β Learn about InfraKitchen's main building blocks.