Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit 0c9f6c2

Browse files
authored
Merge pull request #101 from jdeathe/centos-6-develop
Release changes for 1.7.1
2 parents d8e07f1 + 7bd7b42 commit 0c9f6c2

File tree

6 files changed

+99
-46
lines changed

6 files changed

+99
-46
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
packages
1+
packages
2+
dist

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# CentOS-6, Apache 2.2, PHP 5.3, PHP Memcached 1.0, PHP APC 3.1.
55
#
66
# =============================================================================
7-
FROM jdeathe/centos-ssh-apache-php:centos-6-1.7.1
7+
FROM jdeathe/centos-ssh-apache-php:centos-6-1.7.2
88

99
MAINTAINER James Deathe <james.deathe@gmail.com>
1010

@@ -39,14 +39,14 @@ ENV APACHE_MPM="worker"
3939
# -----------------------------------------------------------------------------
4040
# Set image metadata
4141
# -----------------------------------------------------------------------------
42-
ARG RELEASE_VERSION="1.7.0"
42+
ARG RELEASE_VERSION="1.7.1"
4343
LABEL \
4444
install="docker run \
4545
--rm \
4646
--privileged \
4747
--volume /:/media/root \
4848
jdeathe/centos-ssh-apache-php-fcgi:centos-6-${RELEASE_VERSION} \
49-
/sbin/scmi install \
49+
/usr/sbin/scmi install \
5050
--chroot=/media/root \
5151
--name=\${NAME} \
5252
--tag=centos-6-${RELEASE_VERSION}" \
@@ -55,7 +55,7 @@ jdeathe/centos-ssh-apache-php-fcgi:centos-6-${RELEASE_VERSION} \
5555
--privileged \
5656
--volume /:/media/root \
5757
jdeathe/centos-ssh-apache-php-fcgi:centos-6-${RELEASE_VERSION} \
58-
/sbin/scmi uninstall \
58+
/usr/sbin/scmi uninstall \
5959
--chroot=/media/root \
6060
--name=\${NAME} \
6161
--tag=centos-6-${RELEASE_VERSION}" \

Makefile

+22-22
Original file line numberDiff line numberDiff line change
@@ -99,21 +99,21 @@ create: prerequisites require-docker-container-not
9999
fi
100100

101101
dist: prerequisites require-docker-release-tag require-package-path | pull
102-
$(eval $@_package_path := $(realpath \
103-
$(PACKAGE_PATH) \
102+
$(eval $@_dist_path := $(realpath \
103+
$(DIST_PATH) \
104104
))
105-
@ if [[ -s $($@_package_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz ]]; then \
105+
@ if [[ -s $($@_dist_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz ]]; then \
106106
echo "$(PREFIX_STEP) Saving package"; \
107-
echo "$(PREFIX_SUB_STEP) Package path: $($@_package_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz"; \
107+
echo "$(PREFIX_SUB_STEP) Package path: $($@_dist_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz"; \
108108
echo "$(PREFIX_SUB_STEP_POSITIVE) Package already exists"; \
109109
else \
110110
echo "$(PREFIX_STEP) Saving package"; \
111111
$(docker) save \
112112
$(DOCKER_USER)/$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG) | \
113113
$(xz) -9 > \
114-
$($@_package_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz; \
114+
$($@_dist_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz; \
115115
if [[ $${?} -eq 0 ]]; then \
116-
echo "$(PREFIX_SUB_STEP) Package path: $($@_package_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz"; \
116+
echo "$(PREFIX_SUB_STEP) Package path: $($@_dist_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz"; \
117117
echo "$(PREFIX_SUB_STEP_POSITIVE) Package saved"; \
118118
else \
119119
echo "$(PREFIX_SUB_STEP_NEGATIVE) Package save error"; \
@@ -122,16 +122,16 @@ dist: prerequisites require-docker-release-tag require-package-path | pull
122122
fi
123123

124124
distclean: prerequisites require-docker-release-tag require-package-path | clean
125-
$(eval $@_package_path := $(realpath \
126-
$(PACKAGE_PATH) \
125+
$(eval $@_dist_path := $(realpath \
126+
$(DIST_PATH) \
127127
))
128-
@ if [[ -e $($@_package_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz ]]; then \
128+
@ if [[ -e $($@_dist_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz ]]; then \
129129
echo "$(PREFIX_STEP) Deleting package"; \
130-
echo "$(PREFIX_SUB_STEP) Package path: $($@_package_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz"; \
131-
find $($@_package_path) \
130+
echo "$(PREFIX_SUB_STEP) Package path: $($@_dist_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz"; \
131+
find $($@_dist_path) \
132132
-name $(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz \
133133
-delete; \
134-
if [[ ! -e $($@_package_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz ]]; then \
134+
if [[ ! -e $($@_dist_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz ]]; then \
135135
echo "$(PREFIX_SUB_STEP_POSITIVE) Package cleanup complete"; \
136136
else \
137137
echo "$(PREFIX_SUB_STEP_NEGATIVE) Package cleanup failed"; \
@@ -159,17 +159,17 @@ logs-delayed: prerequisites
159159
@ $(MAKE) logs
160160

161161
load: prerequisites require-docker-release-tag require-package-path
162-
$(eval $@_package_path := $(realpath \
163-
$(PACKAGE_PATH) \
162+
$(eval $@_dist_path := $(realpath \
163+
$(DIST_PATH) \
164164
))
165165
@ echo "$(PREFIX_STEP) Loading image from package"; \
166-
echo "$(PREFIX_SUB_STEP) Package path: $($@_package_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz"; \
167-
if [[ ! -s $($@_package_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz ]]; then \
166+
echo "$(PREFIX_SUB_STEP) Package path: $($@_dist_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz"; \
167+
if [[ ! -s $($@_dist_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz ]]; then \
168168
echo "$(PREFIX_STEP_NEGATIVE) Package not found"; \
169169
echo "$(PREFIX_SUB_STEP_NEGATIVE) To create a package try: DOCKER_IMAGE_TAG=\"$(DOCKER_IMAGE_TAG)\" make dist"; \
170170
exit 1; \
171171
else \
172-
$(xz) -dc $($@_package_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz | \
172+
$(xz) -dc $($@_dist_path)/$(DOCKER_IMAGE_NAME).$(DOCKER_IMAGE_TAG).tar.xz | \
173173
$(docker) load; \
174174
echo "$(PREFIX_SUB_STEP) $$( if [[ -n $$($(docker) images -q $(DOCKER_USER)/$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG)) ]]; then echo $$($(docker) images -q $(DOCKER_USER)/$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG)); else echo $$($(docker) images -q docker.io/$(DOCKER_USER)/$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG)); fi; )"; \
175175
echo "$(PREFIX_SUB_STEP_POSITIVE) Image loaded"; \
@@ -271,15 +271,15 @@ require-docker-release-tag:
271271
fi
272272

273273
require-package-path:
274-
@ if [[ -n $(PACKAGE_PATH) ]] && [[ ! -d $(PACKAGE_PATH) ]]; then \
274+
@ if [[ -n $(DIST_PATH) ]] && [[ ! -d $(DIST_PATH) ]]; then \
275275
echo "$(PREFIX_STEP) Creating package directory"; \
276-
mkdir -p $(PACKAGE_PATH); \
276+
mkdir -p $(DIST_PATH); \
277277
fi; \
278278
if [[ ! $${?} -eq 0 ]]; then \
279-
echo "$(PREFIX_STEP_NEGATIVE) Failed to make package path: $(PACKAGE_PATH)"; \
279+
echo "$(PREFIX_STEP_NEGATIVE) Failed to make package path: $(DIST_PATH)"; \
280280
exit 1; \
281-
elif [[ -z $(PACKAGE_PATH) ]]; then \
282-
echo "$(PREFIX_STEP_NEGATIVE) Undefined PACKAGE_PATH"; \
281+
elif [[ -z $(DIST_PATH) ]]; then \
282+
echo "$(PREFIX_STEP_NEGATIVE) Undefined DIST_PATH"; \
283283
exit 1; \
284284
fi
285285

README.md

+67-15
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ $ docker exec -it apache-php.pool-1.1.1 apachectl -h
7272

7373
### Running
7474

75-
To run the a docker container from this image you can use the standard docker commands. Alternatively, you can use the embedded (Service Container Manager Interface) [scmi](https://github.com/jdeathe/centos-ssh-apache-php-fcgi/blob/centos-6/usr/sbin/scmi) that is included in the image since `centos-6-1.7.0` or, if you have a checkout of the [source repository](https://github.com/jdeathe/centos-ssh-apache-php-fcgi), and have make installed the Makefile provides targets to build, install, start, stop etc. where environment variables can be used to configure the container options and set custom docker run parameters.
75+
To run the a docker container from this image you can use the standard docker commands. Alternatively, you can use the embedded (Service Container Manager Interface) [scmi](https://github.com/jdeathe/centos-ssh-apache-php-fcgi/blob/centos-6/usr/sbin/scmi) that is included in the image since `centos-6-1.7.1` or, if you have a checkout of the [source repository](https://github.com/jdeathe/centos-ssh-apache-php-fcgi), and have make installed the Makefile provides targets to build, install, start, stop etc. where environment variables can be used to configure the container options and set custom docker run parameters.
7676

7777
#### SCMI Installation Examples
7878

@@ -85,10 +85,10 @@ $ docker run \
8585
--rm \
8686
--privileged \
8787
--volume /:/media/root \
88-
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.0 \
88+
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.1 \
8989
/sbin/scmi install \
9090
--chroot=/media/root \
91-
--tag=centos-6-1.7.0 \
91+
--tag=centos-6-1.7.1 \
9292
--name=apache-php.pool-1.1.1
9393
```
9494

@@ -101,10 +101,10 @@ $ docker run \
101101
--rm \
102102
--privileged \
103103
--volume /:/media/root \
104-
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.0 \
104+
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.1 \
105105
/sbin/scmi uninstall \
106106
--chroot=/media/root \
107-
--tag=centos-6-1.7.0 \
107+
--tag=centos-6-1.7.1 \
108108
--name=apache-php.pool-1.1.1
109109
```
110110

@@ -117,10 +117,10 @@ $ docker run \
117117
--rm \
118118
--privileged \
119119
--volume /:/media/root \
120-
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.0 \
120+
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.1 \
121121
/sbin/scmi install \
122122
--chroot=/media/root \
123-
--tag=centos-6-1.7.0 \
123+
--tag=centos-6-1.7.1 \
124124
--name=apache-php.pool-1.1.1 \
125125
--manager=systemd \
126126
--register \
@@ -134,15 +134,15 @@ If your docker host has systemd, fleetd (and optionally etcd) installed then `sc
134134

135135
##### SCMI Image Information
136136

137-
Since release `centos-6-1.7.0` the install template has been added to the image metadata. Using docker inspect you can access `scmi` to simplify install/uninstall tasks.
137+
Since release `centos-6-1.7.1` the install template has been added to the image metadata. Using docker inspect you can access `scmi` to simplify install/uninstall tasks.
138138

139139
To see detailed information about the image run `scmi` with the `--info` option. To see all available `scmi` options run with the `--help` option.
140140

141141
```
142142
$ eval "sudo -E $(
143143
docker inspect \
144144
-f "{{.ContainerConfig.Labels.install}}" \
145-
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.0
145+
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.1
146146
) --info"
147147
```
148148

@@ -152,7 +152,7 @@ To perform an installation using the docker name `apache-php.pool-1.2.1` simply
152152
$ eval "sudo -E $(
153153
docker inspect \
154154
-f "{{.ContainerConfig.Labels.install}}" \
155-
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.0
155+
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.1
156156
) --name=apache-php.pool-1.2.1"
157157
```
158158

@@ -162,7 +162,7 @@ To uninstall use the *same command* that was used to install but with the `unins
162162
$ eval "sudo -E $(
163163
docker inspect \
164164
-f "{{.ContainerConfig.Labels.uninstall}}" \
165-
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.0
165+
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.1
166166
) --name=apache-php.pool-1.2.1"
167167
```
168168

@@ -175,7 +175,7 @@ To see detailed information about the image run `scmi` with the `--info` option.
175175
```
176176
$ sudo -E atomic install \
177177
-n apache-php.pool-1.3.1 \
178-
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.0 \
178+
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.1 \
179179
--info
180180
```
181181

@@ -184,14 +184,14 @@ To perform an installation using the docker name `apache-php.pool-1.3.1` simply
184184
```
185185
$ sudo -E atomic install \
186186
-n apache-php.pool-1.3.1 \
187-
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.0
187+
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.1
188188
```
189189

190190
Alternatively, you could use the `scmi` options `--name` or `-n` for naming the container.
191191

192192
```
193193
$ sudo -E atomic install \
194-
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.0 \
194+
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.1 \
195195
--name apache-php.pool-1.3.1
196196
```
197197

@@ -200,7 +200,7 @@ To uninstall use the *same command* that was used to install but with the `unins
200200
```
201201
$ sudo -E atomic uninstall \
202202
-n apache-php.pool-1.3.1 \
203-
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.0
203+
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.1
204204
```
205205

206206
#### Environment Variables
@@ -338,6 +338,58 @@ The public directory is relative to the `APACHE_CONTENT_ROOT` and together they
338338
...
339339
```
340340

341+
##### APACHE_SSL_CERTIFICATE
342+
343+
The `APACHE_SSL_CERTIFICATE` environment variable is used to define a PEM, (and optionally base64), encoded certificate bundle. Base64 encoding of the PEM file contents is recommended. To make a compatible certificate bundle use the `cat` command to combine the certificate files together.
344+
345+
```
346+
$ cat /usr/share/private/server-key.pem \
347+
/usr/share/certs/server-certificate.pem \
348+
/usr/share/certs/intermediate-certificate.pem \
349+
> /usr/share/certs/server-bundle.pem
350+
```
351+
352+
*Note:* The `base64` command on Mac OSX will encode a file without line breaks by default but if using the command on Linux you need to include use the `-w` option to prevent wrapping lines at 80 characters. i.e. `base64 -w 0 -i {certificate-path}`.
353+
354+
```
355+
...
356+
--env "APACHE_SSL_CERTIFICATE=$(
357+
base64 -i "/usr/share/certs/server-bundle.pem"
358+
)" \
359+
...
360+
```
361+
362+
##### APACHE_SSL_CIPHER_SUITE
363+
364+
Use the `APACHE_SSL_CIPHER_SUITE` environment variable to define an appropriate Cipher Suite. The default "intermediate" selection should be suitable for most use-cases where support for a wide range browsers is necessary.
365+
366+
References:
367+
- [OpenSSL ciphers documentation](https://www.openssl.org/docs/manmaster/apps/ciphers.html).
368+
- [Mozilla Security/Server Side TLS guidance](https://wiki.mozilla.org/Security/Server_Side_TLS).
369+
370+
*Note:* The value show is using space separated values to allow for readablity in the documentation; this is valid syntax however using the colon separator is the recommended form.
371+
372+
```
373+
...
374+
--env "APACHE_SSL_CIPHER_SUITE=ECDHE-ECDSA-AES256-GCM-SHA384 \
375+
ECDHE-RSA-AES256-GCM-SHA384 ECDHE-ECDSA-CHACHA20-POLY1305 \
376+
ECDHE-RSA-CHACHA20-POLY1305 ECDHE-ECDSA-AES128-GCM-SHA256 \
377+
ECDHE-RSA-AES128-GCM-SHA256 ECDHE-ECDSA-AES256-SHA384 \
378+
ECDHE-RSA-AES256-SHA384 ECDHE-ECDSA-AES128-SHA256 \
379+
ECDHE-RSA-AES128-SHA256" \
380+
...
381+
```
382+
383+
##### APACHE_SSL_PROTOCOL
384+
385+
Use the `APACHE_SSL_PROTOCOL` environment variable to define the supported protocols. The default protocols are suitable for most "intermediate" use-cases however you might want to restrict the TLS version support for example.
386+
387+
```
388+
...
389+
--env "APACHE_SSL_PROTOCOL=All -SSLv2 -SSLv3 -TLSv1 -TLSv1.1" \
390+
...
391+
```
392+
341393
##### APACHE_SYSTEM_USER
342394

343395
Use the `APACHE_SYSTEM_USER` environment variable to define a custom service username.

default.mk

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ define DOCKER_CONTAINER_PARAMETERS
2424
endef
2525

2626
DOCKER_PUBLISH := $(shell \
27-
if [[ $(DOCKER_PORT_MAP_TCP_80) != NULL ]]; then printf -- '--publish %s%s:80\n' $(DOCKER_PORT_MAP_TCP_80); fi; \
28-
if [[ $(DOCKER_PORT_MAP_TCP_443) != NULL ]] && [[ $(APACHE_MOD_SSL_ENABLED) == true ]]; then printf -- '--publish %s%s:443\n' $(DOCKER_PORT_MAP_TCP_443); fi; \
29-
if [[ $(DOCKER_PORT_MAP_TCP_8443) != NULL ]]; then printf -- '--publish %s%s:8443\n' $(DOCKER_PORT_MAP_TCP_8443); fi; \
27+
if [[ $(DOCKER_PORT_MAP_TCP_80) != NULL ]]; then printf -- '--publish %s:80\n' $(DOCKER_PORT_MAP_TCP_80); fi; \
28+
if [[ $(DOCKER_PORT_MAP_TCP_443) != NULL ]] && [[ $(APACHE_MOD_SSL_ENABLED) == true ]]; then printf -- '--publish %s:443\n' $(DOCKER_PORT_MAP_TCP_443); fi; \
29+
if [[ $(DOCKER_PORT_MAP_TCP_8443) != NULL ]]; then printf -- '--publish %s:8443\n' $(DOCKER_PORT_MAP_TCP_8443); fi; \
3030
)

etc/systemd/system/centos-ssh-apache-php-fcgi@.service

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Environment="DOCKER_USER=jdeathe"
5252
Environment="DOCKER_CONTAINER_PARAMETERS_APPEND="
5353
Environment="DOCKER_IMAGE_PACKAGE_PATH=/var/opt/scmi/packages"
5454
Environment="DOCKER_IMAGE_NAME=centos-ssh-apache-php-fcgi"
55-
Environment="DOCKER_IMAGE_TAG=centos-6-1.7.0"
55+
Environment="DOCKER_IMAGE_TAG=centos-6-1.7.1"
5656
Environment="DOCKER_PORT_MAP_TCP_80=8080"
5757
Environment="DOCKER_PORT_MAP_TCP_443=9443"
5858
Environment="DOCKER_PORT_MAP_TCP_8443=NULL"

0 commit comments

Comments
 (0)