Skip to content

Commit

Permalink
Merge branch 'main' into release/3.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Millu authored Feb 11, 2024
2 parents 4e5be18 + 64b0fec commit 14c9a1e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ This is done via Docker Desktop preferences

### Configure Invoke environment

1. Make a copy of `env.sample` and name it `.env` (`cp env.sample .env` (Mac/Linux) or `copy example.env .env` (Windows)). Make changes as necessary. Set `INVOKEAI_ROOT` to an absolute path to:
1. Make a copy of `.env.sample` and name it `.env` (`cp .env.sample .env` (Mac/Linux) or `copy example.env .env` (Windows)). Make changes as necessary. Set `INVOKEAI_ROOT` to an absolute path to:
a. the desired location of the InvokeAI runtime directory, or
b. an existing, v3.0.0 compatible runtime directory.
1. Execute `run.sh`
Expand Down
2 changes: 1 addition & 1 deletion docs/installation/040_INSTALL_DOCKER.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ a token and copy it, since you will need in for the next step.

### Setup

Set up your environmnent variables. In the `docker` directory, make a copy of `env.sample` and name it `.env`. Make changes as necessary.
Set up your environmnent variables. In the `docker` directory, make a copy of `.env.sample` and name it `.env`. Make changes as necessary.

Any environment variables supported by InvokeAI can be set here - please see the [CONFIGURATION](../features/CONFIGURATION.md) for further detail.

Expand Down
3 changes: 1 addition & 2 deletions installer/lib/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,7 @@ def choose_version(available_releases: tuple | None = None) -> str:
complete_while_typing=True,
completer=FuzzyWordCompleter(choices),
)

console.print(f" Version {choices[0] if response == "" else response} will be installed.")
console.print(f" Version {choices[0] if response == '' else response} will be installed.")

console.line()

Expand Down

0 comments on commit 14c9a1e

Please sign in to comment.