https://github.com/willguimont/invokeai-docker
Run InvokeAI in Docker
https://github.com/willguimont/invokeai-docker
Last synced: 6 months ago
JSON representation
Run InvokeAI in Docker
- Host: GitHub
- URL: https://github.com/willguimont/invokeai-docker
- Owner: willGuimont
- License: mit
- Created: 2023-09-15T01:50:54.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-28T01:23:32.000Z (about 2 years ago)
- Last Synced: 2025-10-08T19:05:53.077Z (10 months ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# InvokeAI Dockerfile
## Build
```bash
docker build -t invoke .
```
## Running
```bash
docker-compose run --build app
# then install
./install.sh
# then start
~/invokeai/invoke.sh
# open http://127.0.0.1:9090
```
You can connect an additional TTY to the container using:
```bash
docker exec -it bash
```
`/app/output` is a volume mapped to `./output/`, so you can use it to transfert data from and to the container.