Skip to content

Commit

Permalink
fix: install uv in docker-bootstrap (#31588)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch authored Dec 20, 2024
1 parent e8daa63 commit fd9c2b3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker/docker-bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@

set -eo pipefail

# UV may not be installed in older images
pip install uv

# Make python interactive
if [ "$DEV_MODE" == "true" ]; then
echo "Reinstalling the app in editable mode"
Expand Down
7 changes: 7 additions & 0 deletions docs/docs/installation/docker-compose.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,13 @@ Here various release tags, github SHA, and latest `master` can be referenced by
Refer to the docker-related documentation to learn more about existing tags you can point to
from Docker Hub.

:::note
For option #2 and #3, we recommend checking out the release tag from the better repository
(ie: `git checkout 4.0.0`) for more guaranteed results. This ensures that the `docker-compose.*.yml`
configurations and that the mounted `docker/` scripts are in sync with the image you are
looking to fire up.
:::

## `docker compose` tips & configuration

:::caution
Expand Down

0 comments on commit fd9c2b3

Please sign in to comment.