Skip to content

Docker Setup

Set up InfraKitchen using Docker for local development.


🚀 Quick Start

  1. Make sure you have Docker installed on your machine. You can download it from Docker's official website.

  2. Clone the project repository to your local machine using Git.

  3. From the root directory of the project, run the following command to copy Docker Compose file and start the development environment:

Bash
cp docs/examples/docker/docker-compose.yml ./docker-compose.yml
docker compose up -d

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


🛠️ Common Commands

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

➡️ Next Steps