Skip to content

Commit

Permalink
Merge pull request #115 from xela1/main
Browse files Browse the repository at this point in the history
  • Loading branch information
traktuner authored Feb 11, 2024
2 parents 51f595b + 384b4c4 commit 19545e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
15 changes: 3 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,18 +288,9 @@ container.
````
1. Open the Web Interface (on the port you specified in the docker run command, in this example 8080):
![Step 1](https://user-images.githubusercontent.com/28999431/149661532-b4fac1b2-eb40-4e5a-b466-b2551372d6f4.png)
![Bildschirmfoto von 2022-01-16 02-46-05](https://user-images.githubusercontent.com/28999431/149661717-f066a8b6-4add-41af-bd2d-1a20c481aa07.png)
1. Click "Install" to install Mono
![Bildschirmfoto von 2022-01-16 14-17-55](https://user-images.githubusercontent.com/28999431/149661561-6a14cf08-9d76-415e-bb51-e1b62bf0b796.png)
1. Wait for the Download to finish
![Bildschirmfoto von 2022-01-16 14-19-08](https://user-images.githubusercontent.com/28999431/149661613-272402f9-7a5e-44a2-940b-7a5314cb3924.png)
2. You may see wine being updated, this will take a couple of minutes
![image](https://github.com/xela1/backblaze-personal-wine-container/assets/357319/4f401b31-8d1d-40fe-85a3-ec4637c23bf5)
1. The UI of the first step of the Backblaze installer is broken on wine, but it doesn't matter, just insert the email to your backblaze account into the input field
Expand Down
3 changes: 2 additions & 1 deletion startapp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ pinned_bz_version=$(sed -n '1p' "$pinned_bz_version_file")
pinned_bz_version_url=$(sed -n '2p' "$pinned_bz_version_file")

export WINEARCH="win64"
export WINEDLLOVERRIDES="mscoree=" #stops mono popup, we don't need mono anyway

# Disclaimer
disclaimer_updatemode() {
Expand Down Expand Up @@ -62,7 +63,7 @@ start_app() {
}

# Pre-initialize Wine
if [ ! -d "$WINEPREFIX" ]; then
if [ ! -f "${WINEPREFIX}system.reg" ]; then
echo "WINE: Wine not initialized, initializing"
wineboot -i
log_message "WINE: Initialization done"
Expand Down

0 comments on commit 19545e1

Please sign in to comment.