-
Hi! I installed docker on a ubuntu server. I ran the docker file. Everything is up and running and I can access the webserver after I did some config so i can access it from http:/ip:8080 But... what exactly should I see when trying to access it... for me I get a blank page with: QtWebGL - Waiting for connection.. Do I need to start something else.. I thought I would get to some config page and be able to run QT app from docker... what am I doing wrong this time ? 🗡️ /Eskimos |
Beta Was this translation helpful? Give feedback.
Replies: 11 comments 12 replies
-
@nix155 could you help? |
Beta Was this translation helpful? Give feedback.
-
In both containers, If you encounter any issues, I would recommend taking the linux_webgl directory, building the image from it (using command: ["qdomyos-zwift", "-no-gui"] After that, you can inspect the container logs: docker logs qdomyos-zwift-webgl |
Beta Was this translation helpful? Give feedback.
-
For both directories, the process is the same: copy everything from the linux_webgl directory into a single directory, make the docker compose up -d |
Beta Was this translation helpful? Give feedback.
-
There might be issues with the GUI in both versions (although there shouldn’t be any on Ubuntu), but the GUI isn’t critical—everything can be configured via a config file, and you can view the logs in the console. In any case, first, ensure everything works correctly without the GUI, and then add the GUI later if desired. I tested it on a laptop with Ubuntu/Fedora, and it worked. |
Beta Was this translation helpful? Give feedback.
-
Bluetooth not found )) |
Beta Was this translation helpful? Give feedback.
-
Hi! Ok now i got it to work.
An spinning green circle and then connection to my trainer.
Thanks 😊
Den lör 28 dec. 2024 12:02nix155 ***@***.***> skrev:
… All the settings for building the image include the Dockerfile, a build
script (hehe) called build.sh, and for running, a docker-compose.yml
file. The command to start it is docker compose up -d (from the directory
containing the compose file).
For learning, I would recommend YouTube—it's a great resource and can be
combined with a practice environment—and this is not a joke.
—
Reply to this email directly, view it on GitHub
<#2948 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AIA7NSOCRQABTG6ZQBSFDLD2H2ALNAVCNFSM6AAAAABUJAPLVWVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCNRYGQYTOMA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
I’ll write this down so I won’t forget later: "How to build and run the project from Docker":
In case of any errors during the build (or while running), it’s usually enough to update the list of libraries—ChatGPT can help with that. The first stage ( |
Beta Was this translation helpful? Give feedback.
-
Added images to Docker Hub, you can download them with the following commands: docker pull r155/qdomyos-zwift-gui-vnc
docker pull r155/qdomyos-zwift-webgl To run them, you can use the corresponding image: r155/qdomyos-zwift-gui-vnc
image: r155/qdomyos-zwift-webgl For local use, you can extract the binary from there. 😊 When the main repository is updated, the images should also be updated (though this is not guaranteed – it needs to be checked). |
Beta Was this translation helpful? Give feedback.
-
Wow that's amazing, thanks!
Roberto Viola
Software engineer and open source enthusiast
http://robertoviola.cloud
Il giorno mar 31 dic 2024 alle 09:49 nix155 ***@***.***> ha
scritto:
… Added images to Docker Hub, you can download them with the following
commands:
docker pull r155/qdomyos-zwift-gui-vnc
docker pull r155/qdomyos-zwift-webgl
To run them, you can use the corresponding docker-compose.yml files from
the docker/... repository, updating the image name as follows:
image: r155/qdomyos-zwift-gui-vncimage: r155/qdomyos-zwift-webgl
For local use, you can extract the binary from there. 😊
When the main repository is updated, the images should also be updated
(though this is not guaranteed – it needs to be checked).
—
Reply to this email directly, view it on GitHub
<#2948 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAALYWG43AJMDQLJXMIJUOL2IJLDJAVCNFSM6AAAAABUJAPLVWVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCNZQGQZDSNA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
Moved from Docker Hub to GitHub, added a build for the Linux binary (with a 1-hour check interval for changes in the source repository). Linux Binary Docker Images DockerHub Actions Code |
Beta Was this translation helpful? Give feedback.
-
Works with docker pull ghcr.io/nix155/qdomyos-zwift-webgl:latest 1337 :D |
Beta Was this translation helpful? Give feedback.
I’ll write this down so I won’t forget later: "How to build and run the project from Docker":
Copy one of these directories with files:
linux_gui_vnc
linux_webgl
To build the project, you only need the contents of one of these directories, so there’s no need to pull the repository.
Navigate to the copied directory:
cd directory_name
Grant execution permissions to the build script:
Run the script:
After the build, you will have an image (you can check the list using
docker image ls
).To run the project, execute the following command from the directory containing the
docker-compose.yml
file:In case of any errors during the bui…