-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6b18574
commit 4e31b6a
Showing
5 changed files
with
47 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
services: | ||
lakefs: | ||
image: docker.io/treeverse/lakefs:1.47 | ||
ports: | ||
- "8000:8000" | ||
environment: | ||
- LAKEFS_DATABASE_TYPE=local | ||
- LAKEFS_BLOCKSTORE_TYPE=local | ||
- LAKEFS_AUTH_ENCRYPT_SECRET_KEY=some random secret string | ||
- LAKEFS_LOGGING_LEVEL=INFO | ||
- LAKEFS_STATS_ENABLED=${LAKEFS_STATS_ENABLED:-1} | ||
- LAKEFS_INSTALLATION_USER_NAME=delta | ||
- LAKEFS_INSTALLATION_ACCESS_KEY_ID=LAKEFSID | ||
- LAKECTL_CREDENTIALS_ACCESS_KEY_ID=LAKEFSID | ||
- LAKEFS_INSTALLATION_SECRET_ACCESS_KEY=LAKEFSKEY | ||
- LAKECTL_CREDENTIALS_SECRET_ACCESS_KEY=LAKEFSKEY | ||
- LAKECTL_SERVER_ENDPOINT_URL=http://localhost:8000 | ||
entrypoint: ["/bin/sh", "-c"] | ||
command: | ||
- | | ||
lakefs run --local-settings & | ||
echo "---- Creating repository ----" | ||
wait-for -t 60 lakefs:8000 -- lakectl repo create lakefs://bronze local://bronze || true | ||
echo "" | ||
echo "lakeFS Web UI: http://127.0.0.1:8000/ >(._.)<" | ||
echo " ( )_ " | ||
echo "" | ||
echo " Access Key ID : $$LAKEFS_INSTALLATION_ACCESS_KEY_ID" | ||
echo " Secret Access Key: $$LAKEFS_INSTALLATION_SECRET_ACCESS_KEY" | ||
echo "" | ||
echo "-------- Let's go and have axolotl fun! --------" | ||
echo "" | ||
wait |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters