You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by do...@apache.org on 2020/08/10 05:54:25 UTC

[orc] branch master updated: MINOR: Update docker/README as markdown file

This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/master by this push:
     new f79ee3c  MINOR: Update docker/README as markdown file
f79ee3c is described below

commit f79ee3c5d8cacff0a05d524b6bb916b12babd92d
Author: Dongjoon Hyun <do...@apache.org>
AuthorDate: Sun Aug 9 22:51:45 2020 -0700

    MINOR: Update docker/README as markdown file
---
 docker/README    | 26 --------------------------
 docker/README.md | 29 +++++++++++++++++++++++++++++
 2 files changed, 29 insertions(+), 26 deletions(-)

diff --git a/docker/README b/docker/README
deleted file mode 100644
index eee042a..0000000
--- a/docker/README
+++ /dev/null
@@ -1,26 +0,0 @@
-These scripts are useful for building and testing on different versions of
-Linux.
-
-ORC is currently supported on:
-* CentOS 6, 7, and 8
-* Debian 8, 9, and 10
-* Ubuntu 14, 16, and 18
-
-To test against all of the Linux OSes against Apache's master branch:
-1. cd docker
-2. ./run-all.sh apache master
-
-Using 'local' as the owner will cause the scripts to use the local repository.
-
-The scripts are:
-1. run-all.sh *owner* *branch* - test the given owner's branch on all OSes
-2. run-one.sh *owner* *branch* *os* - test the owner's branch on one OS
-3. reinit.sh - rebuild all of the base images without the image cache
-
-A base image for each OS is built using:
-1. cd docker/$os
-2. docker build -t orc-$os .
-
-To clean up docker:
-1. docker container prune
-2. docker image prune
diff --git a/docker/README.md b/docker/README.md
new file mode 100644
index 0000000..8218f01
--- /dev/null
+++ b/docker/README.md
@@ -0,0 +1,29 @@
+## Supported OSes
+
+* CentOS 6, 7, and 8
+* Debian 8, 9, and 10
+* Ubuntu 14, 16, and 18
+
+## Test
+
+To test against all of the Linux OSes against Apache's master branch:
+
+    cd docker
+    ./run-all.sh apache master
+
+Using `local` as the owner will cause the scripts to use the local repository.
+
+The scripts are:
+* `run-all.sh` *owner* *branch* - test the given owner's branch on all OSes
+* `run-one.sh` *owner* *branch* *os* - test the owner's branch on one OS
+* `reinit.sh` - rebuild all of the base images without the image cache
+
+A base image for each OS is built using:
+
+    cd docker/$os
+    docker build -t orc-$os .
+
+## Clean up
+
+    docker container prune
+    docker image prune