Skip to content

Commit 14c9a1e

Browse files
authored
Merge branch 'main' into release/3.6.3
2 parents 4e5be18 + 64b0fec commit 14c9a1e

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This is done via Docker Desktop preferences
2828

2929
### Configure Invoke environment
3030

31-
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:
31+
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:
3232
a. the desired location of the InvokeAI runtime directory, or
3333
b. an existing, v3.0.0 compatible runtime directory.
3434
1. Execute `run.sh`

docs/installation/040_INSTALL_DOCKER.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ a token and copy it, since you will need in for the next step.
6969

7070
### Setup
7171

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

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

installer/lib/messages.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,7 @@ def choose_version(available_releases: tuple | None = None) -> str:
9191
complete_while_typing=True,
9292
completer=FuzzyWordCompleter(choices),
9393
)
94-
95-
console.print(f" Version {choices[0] if response == "" else response} will be installed.")
94+
console.print(f" Version {choices[0] if response == '' else response} will be installed.")
9695

9796
console.line()
9897

0 commit comments

Comments
 (0)