Skip to content

Commit

Permalink
update version 1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mik-p committed Aug 25, 2021
1 parent 6c6743c commit ed8a956
Show file tree
Hide file tree
Showing 14 changed files with 41 additions and 41 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Docker + Winter CMS

[![Docker Hub Pulls](https://img.shields.io/docker/pulls/hiltonbanes/wintercms.svg)](https://hub.docker.com/r/hiltonbanes/wintercms/) [![Winter CMS Build v1.1.3](https://img.shields.io/badge/Winter%20CMS%20Build-v1.1.3-red.svg)](https://github.com/wintercms/winter)
[![Docker Hub Pulls](https://img.shields.io/docker/pulls/hiltonbanes/wintercms.svg)](https://hub.docker.com/r/hiltonbanes/wintercms/) [![Winter CMS Build v1.1.5](https://img.shields.io/badge/Winter%20CMS%20Build-v1.1.5-red.svg)](https://github.com/wintercms/winter)

The docker images defined in this repository serve as a starting point for [Winter CMS](https://wintercms.com) projects.

Expand All @@ -20,12 +20,12 @@ Based on [official docker PHP images](https://hub.docker.com/_/php), images incl

## Supported Tags

- `build.v1.1.3-php7.4-apache`, `php7.4-apache`: [php7.4/apache/Dockerfile](https://github.com/mik-p/docker-wintercms/blob/master/php7.4/apache/Dockerfile)
- `build.v1.1.3-php7.4-fpm`, `php7.4-fpm`: [php7.4/fpm/Dockerfile](https://github.com/mik-p/docker-wintercms/blob/master/php7.4/fpm/Dockerfile)
- `build.v1.1.3-php7.3-apache`, `php7.3-apache`: [php7.3/apache/Dockerfile](https://github.com/mik-p/docker-wintercms/blob/master/php7.3/apache/Dockerfile)
- `build.v1.1.3-php7.3-fpm`, `php7.3-fpm`: [php7.3/fpm/Dockerfile](https://github.com/mik-p/docker-wintercms/blob/master/php7.3/fpm/Dockerfile)
- `build.v1.1.3-php7.2-apache`, `php7.2-apache`, `build.v1.1.3`, `latest`: [php7.2/apache/Dockerfile](https://github.com/mik-p/docker-wintercms/blob/master/php7.2/apache/Dockerfile)
- `build.v1.1.3-php7.2-fpm`, `php7.2-fpm`: [php7.2/fpm/Dockerfile](https://github.com/mik-p/docker-wintercms/blob/master/php7.2/fpm/Dockerfile)
- `build.v1.1.5-php7.4-apache`, `php7.4-apache`: [php7.4/apache/Dockerfile](https://github.com/mik-p/docker-wintercms/blob/master/php7.4/apache/Dockerfile)
- `build.v1.1.5-php7.4-fpm`, `php7.4-fpm`: [php7.4/fpm/Dockerfile](https://github.com/mik-p/docker-wintercms/blob/master/php7.4/fpm/Dockerfile)
- `build.v1.1.5-php7.3-apache`, `php7.3-apache`: [php7.3/apache/Dockerfile](https://github.com/mik-p/docker-wintercms/blob/master/php7.3/apache/Dockerfile)
- `build.v1.1.5-php7.3-fpm`, `php7.3-fpm`: [php7.3/fpm/Dockerfile](https://github.com/mik-p/docker-wintercms/blob/master/php7.3/fpm/Dockerfile)
- `build.v1.1.5-php7.2-apache`, `php7.2-apache`, `build.v1.1.5`, `latest`: [php7.2/apache/Dockerfile](https://github.com/mik-p/docker-wintercms/blob/master/php7.2/apache/Dockerfile)
- `build.v1.1.5-php7.2-fpm`, `php7.2-fpm`: [php7.2/fpm/Dockerfile](https://github.com/mik-p/docker-wintercms/blob/master/php7.2/fpm/Dockerfile)


### Develop Tags
Expand Down
6 changes: 3 additions & 3 deletions php7.2/apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ RUN a2enmod rewrite

COPY config/docker /usr/src/wintercms-config-docker

ENV WINTERCMS_TAG v1.1.3
ENV WINTERCMS_CHECKSUM 2de7aea6dd136da6a0723198c52c3342083176f4
ENV WINTERCMS_CORE_BUILD v1.1.3
ENV WINTERCMS_TAG v1.1.5
ENV WINTERCMS_CHECKSUM a40c8f3c7836b8e793f66e83505cdeb212f2a474
ENV WINTERCMS_CORE_BUILD v1.1.5

RUN git clone https://github.com/wintercms/winter.git -b $WINTERCMS_TAG --depth 1 . && \
echo "Update composer.json: Set explicit build references for winter module dependencies" && \
Expand Down
4 changes: 2 additions & 2 deletions php7.2/apache/Dockerfile.develop
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ RUN a2enmod rewrite
COPY config/docker /usr/src/wintercms-config-docker

ENV WINTERCMS_TAG develop
ENV WINTERCMS_DEVELOP_CHECKSUM 59090f063b84e5e44a9fd0830c392058d9bb060d
ENV WINTERCMS_DEVELOP_COMMIT 203d2c4ebac696d39d3dbd92137077db3fb82978
ENV WINTERCMS_DEVELOP_CHECKSUM e13acf116cecc7f01122d4e56280544cf65081f4
ENV WINTERCMS_DEVELOP_COMMIT 6c1ab2c5601ea9ba61b3f776f977840244956a56

RUN git clone https://github.com/wintercms/winter.git -b $WINTERCMS_TAG . && \
composer install --no-interaction --prefer-dist --no-scripts && \
Expand Down
6 changes: 3 additions & 3 deletions php7.2/fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ RUN curl -sS https://getcomposer.org/installer | php -- --1 --install-dir=/usr/l

COPY config/docker /usr/src/wintercms-config-docker

ENV WINTERCMS_TAG v1.1.3
ENV WINTERCMS_CHECKSUM 2de7aea6dd136da6a0723198c52c3342083176f4
ENV WINTERCMS_CORE_BUILD v1.1.3
ENV WINTERCMS_TAG v1.1.5
ENV WINTERCMS_CHECKSUM a40c8f3c7836b8e793f66e83505cdeb212f2a474
ENV WINTERCMS_CORE_BUILD v1.1.5

RUN git clone https://github.com/wintercms/winter.git -b $WINTERCMS_TAG --depth 1 . && \
echo "Update composer.json: Set explicit build references for winter module dependencies" && \
Expand Down
4 changes: 2 additions & 2 deletions php7.2/fpm/Dockerfile.develop
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ RUN curl -sS https://getcomposer.org/installer | php -- --1 --install-dir=/usr/l
COPY config/docker /usr/src/wintercms-config-docker

ENV WINTERCMS_TAG develop
ENV WINTERCMS_DEVELOP_CHECKSUM 59090f063b84e5e44a9fd0830c392058d9bb060d
ENV WINTERCMS_DEVELOP_COMMIT 203d2c4ebac696d39d3dbd92137077db3fb82978
ENV WINTERCMS_DEVELOP_CHECKSUM e13acf116cecc7f01122d4e56280544cf65081f4
ENV WINTERCMS_DEVELOP_COMMIT 6c1ab2c5601ea9ba61b3f776f977840244956a56

RUN git clone https://github.com/wintercms/winter.git -b $WINTERCMS_TAG . && \
composer install --no-interaction --prefer-dist --no-scripts && \
Expand Down
6 changes: 3 additions & 3 deletions php7.3/apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ RUN a2enmod rewrite

COPY config/docker /usr/src/wintercms-config-docker

ENV WINTERCMS_TAG v1.1.3
ENV WINTERCMS_CHECKSUM 2de7aea6dd136da6a0723198c52c3342083176f4
ENV WINTERCMS_CORE_BUILD v1.1.3
ENV WINTERCMS_TAG v1.1.5
ENV WINTERCMS_CHECKSUM a40c8f3c7836b8e793f66e83505cdeb212f2a474
ENV WINTERCMS_CORE_BUILD v1.1.5

RUN git clone https://github.com/wintercms/winter.git -b $WINTERCMS_TAG --depth 1 . && \
echo "Update composer.json: Set explicit build references for winter module dependencies" && \
Expand Down
4 changes: 2 additions & 2 deletions php7.3/apache/Dockerfile.develop
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ RUN a2enmod rewrite
COPY config/docker /usr/src/wintercms-config-docker

ENV WINTERCMS_TAG develop
ENV WINTERCMS_DEVELOP_CHECKSUM 59090f063b84e5e44a9fd0830c392058d9bb060d
ENV WINTERCMS_DEVELOP_COMMIT 203d2c4ebac696d39d3dbd92137077db3fb82978
ENV WINTERCMS_DEVELOP_CHECKSUM e13acf116cecc7f01122d4e56280544cf65081f4
ENV WINTERCMS_DEVELOP_COMMIT 6c1ab2c5601ea9ba61b3f776f977840244956a56

RUN git clone https://github.com/wintercms/winter.git -b $WINTERCMS_TAG . && \
composer install --no-interaction --prefer-dist --no-scripts && \
Expand Down
6 changes: 3 additions & 3 deletions php7.3/fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ RUN curl -sS https://getcomposer.org/installer | php -- --1 --install-dir=/usr/l

COPY config/docker /usr/src/wintercms-config-docker

ENV WINTERCMS_TAG v1.1.3
ENV WINTERCMS_CHECKSUM 2de7aea6dd136da6a0723198c52c3342083176f4
ENV WINTERCMS_CORE_BUILD v1.1.3
ENV WINTERCMS_TAG v1.1.5
ENV WINTERCMS_CHECKSUM a40c8f3c7836b8e793f66e83505cdeb212f2a474
ENV WINTERCMS_CORE_BUILD v1.1.5

RUN git clone https://github.com/wintercms/winter.git -b $WINTERCMS_TAG --depth 1 . && \
echo "Update composer.json: Set explicit build references for winter module dependencies" && \
Expand Down
4 changes: 2 additions & 2 deletions php7.3/fpm/Dockerfile.develop
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ RUN curl -sS https://getcomposer.org/installer | php -- --1 --install-dir=/usr/l
COPY config/docker /usr/src/wintercms-config-docker

ENV WINTERCMS_TAG develop
ENV WINTERCMS_DEVELOP_CHECKSUM 59090f063b84e5e44a9fd0830c392058d9bb060d
ENV WINTERCMS_DEVELOP_COMMIT 203d2c4ebac696d39d3dbd92137077db3fb82978
ENV WINTERCMS_DEVELOP_CHECKSUM e13acf116cecc7f01122d4e56280544cf65081f4
ENV WINTERCMS_DEVELOP_COMMIT 6c1ab2c5601ea9ba61b3f776f977840244956a56

RUN git clone https://github.com/wintercms/winter.git -b $WINTERCMS_TAG . && \
composer install --no-interaction --prefer-dist --no-scripts && \
Expand Down
6 changes: 3 additions & 3 deletions php7.4/apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ RUN a2enmod rewrite

COPY config/docker /usr/src/wintercms-config-docker

ENV WINTERCMS_TAG v1.1.3
ENV WINTERCMS_CHECKSUM 2de7aea6dd136da6a0723198c52c3342083176f4
ENV WINTERCMS_CORE_BUILD v1.1.3
ENV WINTERCMS_TAG v1.1.5
ENV WINTERCMS_CHECKSUM a40c8f3c7836b8e793f66e83505cdeb212f2a474
ENV WINTERCMS_CORE_BUILD v1.1.5

RUN git clone https://github.com/wintercms/winter.git -b $WINTERCMS_TAG --depth 1 . && \
echo "Update composer.json: Set explicit build references for winter module dependencies" && \
Expand Down
4 changes: 2 additions & 2 deletions php7.4/apache/Dockerfile.develop
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ RUN a2enmod rewrite
COPY config/docker /usr/src/wintercms-config-docker

ENV WINTERCMS_TAG develop
ENV WINTERCMS_DEVELOP_CHECKSUM 59090f063b84e5e44a9fd0830c392058d9bb060d
ENV WINTERCMS_DEVELOP_COMMIT 203d2c4ebac696d39d3dbd92137077db3fb82978
ENV WINTERCMS_DEVELOP_CHECKSUM e13acf116cecc7f01122d4e56280544cf65081f4
ENV WINTERCMS_DEVELOP_COMMIT 6c1ab2c5601ea9ba61b3f776f977840244956a56

RUN git clone https://github.com/wintercms/winter.git -b $WINTERCMS_TAG . && \
composer install --no-interaction --prefer-dist --no-scripts && \
Expand Down
6 changes: 3 additions & 3 deletions php7.4/fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ RUN curl -sS https://getcomposer.org/installer | php -- --1 --install-dir=/usr/l

COPY config/docker /usr/src/wintercms-config-docker

ENV WINTERCMS_TAG v1.1.3
ENV WINTERCMS_CHECKSUM 2de7aea6dd136da6a0723198c52c3342083176f4
ENV WINTERCMS_CORE_BUILD v1.1.3
ENV WINTERCMS_TAG v1.1.5
ENV WINTERCMS_CHECKSUM a40c8f3c7836b8e793f66e83505cdeb212f2a474
ENV WINTERCMS_CORE_BUILD v1.1.5

RUN git clone https://github.com/wintercms/winter.git -b $WINTERCMS_TAG --depth 1 . && \
echo "Update composer.json: Set explicit build references for winter module dependencies" && \
Expand Down
4 changes: 2 additions & 2 deletions php7.4/fpm/Dockerfile.develop
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ RUN curl -sS https://getcomposer.org/installer | php -- --1 --install-dir=/usr/l
COPY config/docker /usr/src/wintercms-config-docker

ENV WINTERCMS_TAG develop
ENV WINTERCMS_DEVELOP_CHECKSUM 59090f063b84e5e44a9fd0830c392058d9bb060d
ENV WINTERCMS_DEVELOP_COMMIT 203d2c4ebac696d39d3dbd92137077db3fb82978
ENV WINTERCMS_DEVELOP_CHECKSUM e13acf116cecc7f01122d4e56280544cf65081f4
ENV WINTERCMS_DEVELOP_COMMIT 6c1ab2c5601ea9ba61b3f776f977840244956a56

RUN git clone https://github.com/wintercms/winter.git -b $WINTERCMS_TAG . && \
composer install --no-interaction --prefer-dist --no-scripts && \
Expand Down
8 changes: 4 additions & 4 deletions version
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
WINTERCMS_BUILD=v1.1.3
WINTERCMS_CHECKSUM=2de7aea6dd136da6a0723198c52c3342083176f4
WINTERCMS_DEVELOP_COMMIT=203d2c4ebac696d39d3dbd92137077db3fb82978
WINTERCMS_DEVELOP_CHECKSUM=59090f063b84e5e44a9fd0830c392058d9bb060d
WINTERCMS_BUILD=v1.1.5
WINTERCMS_CHECKSUM=a40c8f3c7836b8e793f66e83505cdeb212f2a474
WINTERCMS_DEVELOP_COMMIT=6c1ab2c5601ea9ba61b3f776f977840244956a56
WINTERCMS_DEVELOP_CHECKSUM=e13acf116cecc7f01122d4e56280544cf65081f4

0 comments on commit ed8a956

Please sign in to comment.