Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve out-of-box experience with single-instance container #5472

Merged
merged 2 commits into from
Feb 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/Installing.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ repository].

Continue with the next section <<#container_setup,Container based setup>> to
setup a simple, ready-to-use container based openQA instance which is useful
for a single user setup. For a quick boostrapping under openSUSE go to
for a single user setup. For a quick bootstrapping under openSUSE go to
<<#bootstrapping,Quick bootstrapping>>. Else, continue with the more
advanced section about <<#custom_installation,Custom installation>>. For a
setup suitable to develop openQA itself, have a look at the
Expand All @@ -40,7 +40,8 @@ single command line using the `podman` container engine is the following:

[source,sh]
----
podman run -p 1080:80 -p 1443:443 --rm -it registry.opensuse.org/devel/openqa/containers/openqa-single-instance
podman run --name openqa --device /dev/kvm -p 1080:80 -p 1443:443 --rm -it \
Martchus marked this conversation as resolved.
Show resolved Hide resolved
registry.opensuse.org/devel/openqa/containers/openqa-single-instance
----

Once the startup has finished, the web UI is accessible via http://localhost:1080
Expand Down
Loading