-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #223 from entelecheia/main
Main
- Loading branch information
Showing
21 changed files
with
141 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
IMAGE_VERSION="0.30.6" # The version of the project | ||
IMAGE_VERSION="0.31.0" # The version of the project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/bash | ||
VERBOSE=${DOCKER_VERBOSE:-"false"} | ||
# add your custom commands here that should be executed every time the docker container starts | ||
if [ "$VERBOSE" = "true" ]; then | ||
echo "Starting docker container..." | ||
echo "---" | ||
# Print out the environment variables | ||
env | ||
echo "---" | ||
echo "Fixing permissions..." | ||
echo "---" | ||
fi | ||
|
||
### Set the USER_UID envvar to match your user. | ||
# Ensures files created in the container are owned by you: | ||
# docker run --rm -it -v /some/path:/invokeai -e USER_UID=$(id -u) <this image> | ||
# Default UID: 1000 chosen due to popularity on Linux systems. Possibly 501 on MacOS. | ||
USER_UID=${USER_UID:-"1000"} | ||
USERNAME=${USERNAME:-"app"} | ||
LOCAL_UID=$(id -u "$USERNAME") | ||
WORKSPACE_ROOT=${WORKSPACE_ROOT:-""} | ||
APP_INSTALL_ROOT=${APP_INSTALL_ROOT:-""} | ||
|
||
if [ "$USER_UID" != "$LOCAL_UID" ]; then | ||
echo "Updating UID and GID to $USER_UID:$USER_UID from $LOCAL_UID:$LOCAL_UID" | ||
usermod -u "$USER_UID" "$USERNAME" | ||
groupmod -g "$USER_UID" "$USERNAME" | ||
echo "Changing ownership of home directory to $USER_UID:$USER_UID" | ||
chown -R "$USER_UID:$USER_UID" "/home/$USERNAME" | ||
if [ -n "$APP_INSTALL_ROOT" ] && [ -d "$APP_INSTALL_ROOT" ]; then | ||
echo "Changing ownership of $APP_INSTALL_ROOT directory to $USER_UID:$USER_UID" | ||
chown -R "$USER_UID:$USER_UID" "$APP_INSTALL_ROOT" | ||
fi | ||
if [ -n "$WORKSPACE_ROOT" ] && [ -d "$WORKSPACE_ROOT" ]; then | ||
echo "Changing ownership of workspace directory [$WORKSPACE_ROOT] to $USER_UID:$USER_UID" | ||
chown -R "$USER_UID:$USER_UID" "$WORKSPACE_ROOT" | ||
fi | ||
fi | ||
|
||
# Run the provided command | ||
exec gosu "${USERNAME}" "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters