Files
home/Projects/kompose/docs/content/3.guide/quick-start.md

28 lines
473 B
Markdown
Raw Normal View History

2025-10-08 17:56:29 +02:00
---
title: Quick Start
description: Get started with Kompose in minutes
---
```bash
# Clone the repository
2025-10-09 17:56:43 +02:00
git clone https://code.pivoine.art/valknar/kompose.git
2025-10-08 17:56:29 +02:00
cd kompose
# Make kompose executable
chmod +x kompose.sh
# List all stacks
./kompose.sh --list
# Start everything
./kompose.sh "*" up -d
# View logs from specific stacks
./kompose.sh "blog,news" logs -f
# Export all databases
./kompose.sh "*" db:export
2025-10-09 00:30:31 +02:00
# That's it! :icon{name="lucide:party-popper"}
2025-10-08 17:56:29 +02:00
```