github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/docs/quickstart/launch.md (about) 1 --- 2 title: 1️⃣ Run lakeFS 3 description: lakeFS quickstart / Run lakeFS locally pre-populated with a sample repository and data under Docker Compose 4 parent: ⭐ Quickstart 5 nav_order: 5 6 next: ["Query the pre-populated data", "./query.html"] 7 previous: ["Quickstart introduction", "./index.html"] 8 --- 9 10 # Spin up the environment 11 12 {: .note} 13 If you don't want to use Docker, you can use the [30-day free trial of lakeFS Cloud](https://lakefs.cloud/register). Once you launch the free trial you will have access to the same content as this quickstart within the provided repository once you login. 14 15 _The quickstart uses Docker to bring up the lakeFS container, pre-populate it with some data, and also provides DuckDB from where we can interact with the data. You'll need [Docker](https://docs.docker.com/get-docker/) installed to run this._ 16 17 Launch the lakeFS container: 18 19 ```bash 20 docker run --name lakefs --pull always \ 21 --rm --publish 8000:8000 \ 22 treeverse/lakefs:latest \ 23 run --quickstart 24 ``` 25 26 After a few moments you should see the lakeFS container ready to use: 27 28 ``` 29 │ 30 │ lakeFS running in quickstart mode. 31 │ Login at http://127.0.0.1:8000/ 32 │ 33 │ Access Key ID : AKIAIOSFOLQUICKSTART 34 │ Secret Access Key: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY 35 │ 36 ``` 37 38 39 You're now ready to dive into lakeFS! 40 41 1. Open lakeFS's web interface at [http://127.0.0.1:8000/](http://127.0.0.1:8000/) 42 43 2. Login with the quickstart credentials. 44 45 * Access Key ID: `AKIAIOSFOLQUICKSTART` 46 * Secret Access Key: `wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY` 47 48 3. You'll notice that there aren't any repositories created yet. Click the **Create Sample Repository** button. 49 50 <img width="75%" src="{{ site.baseurl }}/assets/img/quickstart/empty-repo-list.png" alt="Empty lakeFS Repository list" class="quickstart"/> 51 52 You will see the sample repository created and the quickstart guide within it. You can follow along there, or here - it's the same :) 53 54 <img width="75%" src="{{ site.baseurl }}/assets/img/quickstart/quickstart-repo.gif" alt="The quickstart sample repo in lakeFS" class="quickstart"/>