Linux-rt-users archive mirror
 help / color / mirror / Atom feed
From: Chris White <chwhite@redhat.com>
To: linux-rt-users@vger.kernel.org
Subject: [PATCH] rteval: Add Dockerfile README
Date: Tue, 23 Jan 2024 19:18:10 +0000	[thread overview]
Message-ID: <20240123191810.107-1-chwhite@redhat.com> (raw)

Add README.md for Docker setup, covering build and test instructions
in a containerized environment.

Signed-off-by: Chris White <chwhite@redhat.com>
---
 README-Dockerfile | 49 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)
 create mode 100644 README-Dockerfile

diff --git a/README-Dockerfile b/README-Dockerfile
new file mode 100644
index 0000000..95da6d8
--- /dev/null
+++ b/README-Dockerfile
@@ -0,0 +1,49 @@
+
+# README-Dockerfile-rteval
+
+## Introduction
+This README provides detailed instructions for setting up an rteval container using Docker or Podman. This Dockerfile is designed to pull the latest local copy of your code, along with any modifications you've made, and compile it into a container image for testing purposes. This approach offers an OS-agnostic method for testing your changes, suitable for semi-modern host operating systems. The containerized environment of rteval ensures consistent and reproducible test results across different systems.
+
+## Prerequisites
+- Docker or Podman installed on your system.
+
+## Installation
+### Prepare Your Environment
+- For EPEL systems (Fedora, CentOS, RHEL):
+  - Install Podman: `sudo dnf install podman -y`
+- For Debian-based systems (Ubuntu):
+  - Install Docker: `sudo apt-get update && sudo apt-get install docker.io -y`
+  - Alternatively, install Podman: `sudo apt-get update && sudo apt-get install podman -y`
+
+### Build the Container
+- Navigate to the root directory of the 'rteval'
+- Build the container image named 'rteval-upstream':
+  - For Podman: `sudo podman build -t rteval-upstream .`
+  - For Docker: `sudo docker build -t rteval-upstream .`
+
+## Usage
+### Run the Container
+- Start the container in privileged mode. This container will drop you directly into an interactive shell. Run the following command to start the container and drop into an interactive shell:
+  - For Podman: `sudo podman run -it --privileged rteval-upstream`
+  - For Docker: `sudo docker run -it --privileged rteval-upstream`
+- This will create a long lasting container. In order to use it again (say after a reboot), you need to start and exec into the container to get yourself back into the shell:
+  - For Podman: 
+    - `sudo podman start rteval-upstream`
+    - `sudo podman exec -it rteval-upstream /bin/bash`
+  - For Docker: 
+    - `sudo docker start rteval-upstream`
+    - `sudo docker exec -it rteval-upstream /bin/bash`
+- And to clean up and remove your container so you can test a new one:
+  - For Podman: `sudo podman rm -f rteval-upstream`
+  - For Docker: `sudo docker rm -f rteval-upstream`
+- Please note that the above command does not cleanup the container when you are done. It can be useful to run a single use container when trying to only test a quick change and remove the container afterwards. To run a a single use container that removes itself immediately after you exit the shell, run the following commands with the `--rm` option:
+  - For Podman: `sudo podman run -it --rm --privileged rteval-upstream`
+  - For Docker: `sudo docker run -it --rm --privileged rteval-upstream`
+  
+
+### Test rteval Build
+- Inside the container, test the 'rteval' build:
+  - Command: `rteval -d 1s`
+
+## Conclusion
+Follow these detailed steps for a successful rteval container setup using Docker or Podman.
-- 
2.31.1


             reply	other threads:[~2024-01-23 19:18 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-23 19:18 Chris White [this message]
2024-01-23 20:36 ` [PATCH] rteval: Add Dockerfile README John Kacur

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240123191810.107-1-chwhite@redhat.com \
    --to=chwhite@redhat.com \
    --cc=linux-rt-users@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).