This repository contains the source for creating a source-to-image builder image, which be used to create reproducible Docker images from your web project’s source code. The resulting image can be run using Docker.
For more information about using these images with OpenShift, please see the official OpenShift Documentation.
Caddy versions currently supported are:
-
Caddy 0.8.2
The following operating system base images are supported:
-
CentOS 7
To build a Caddy builder image, execute:
$ git clone https://github.com/openshift-s2i/s2i-caddy.git $ cd s2i-caddy $ make build VERSION=0.8
Alternatively, you can pull the CentOS image from Docker Hub via:
$ docker pull openshift/caddy-08-centos7
Notice: By omitting the VERSION
parameter, the build/test action will
be performed on all the supported versions of Caddy.
There are sample web sites included with this repository. To serve the sample web site using Caddy, run the s2i build:
$ s2i build https://github.com/openshift-s2i/s2i-caddy.git \ --context-dir=0.8/test/test-app openshift/caddy-08-centos7 caddy-test-app
The resulting image can be executed using docker:
$ docker run --rm -p 8080:80 -p 8443:443 caddy-test-app
Once the container is running, it should be accessible using:
$ curl 127.0.0.1:8080
This repository also provides a test suite to check functionality of simple
Caddy web sites or applications built on top of the s2i-caddy
image. It
can be executed simply by running the make test
command:
$ cd s2i-caddy $ make test VERSION=0.8
Notice: By omitting the VERSION
parameter, the build/test action will
be performed on all the supported versions of Caddy.
-
<caddy-version>
: Dockerfile to build container images from.-
<caddy-version>/test/test-app
: Sample Caddy web site used for tests.
-
-
hack/
: Folder containing scripts which are responsible for the build and test actions performed by theMakefile
. -
s2i/
: Build scripts which will be injected into the builder image and executed during application source code builds.
Structure: openshift/1-2-3
-
Platform name (lowercase) - caddy
-
Platform version(without dots) - 08
-
Base builder image - centos7
Examples: openshift/caddy-08-centos7
Contributions to this project (in the form of bug reports, patches, or pull requests) are gratefully accepted by the maintainer. Please see the Contributing.adoc file contained in this package for details.
Copyright 2016 by Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this package except in compliance with the License (see the LICENSE
file
included in this distribution). You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.