mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
12 lines
293 B
Bash
Executable File
12 lines
293 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# This script is provided for backwards compatibility with the old docker setup.
|
|
# it doesn't do much aside from wrapping the usual docker compose CLI.
|
|
|
|
SCRIPTDIR=$(dirname "${BASH_SOURCE[0]}")
|
|
cd "$SCRIPTDIR" || exit 1
|
|
|
|
docker compose up -d
|
|
docker compose logs -f
|