This file contains hidden or 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
#docker run -ti rocm/composable_kernel:ck_ub20.04_rocm5.6 bash | |
FROM rocm/composable_kernel:ck_ub20.04_rocm5.6 | |
RUN mkdir /SD | |
# Clone SD | |
WORKDIR /SD | |
RUN git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui | |
WORKDIR /SD/stable-diffusion-webui | |
RUN git reset --hard 22bcc7be428c94e9408f589966c2040187245d81 |
This file contains hidden or 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
#!/bin/sh | |
if [ "$(whoami)" != "root" ]; then | |
echo "Please run this script as root." | |
exit | |
fi | |
printf "This script will\n\n- Remove Snap\n- Install the deb version of Firefox\n- Install Flatpak\n- Optionally replace Ubuntu Desktop with GNOME\n\n" | |
read -p "Continue? (Y/n) " start_prompt | |
case $start_prompt in | |
[nN] | [nN][oO] ) | |
exit |