Skip to content

Commit

Permalink
Upgrade Craft to 2.7.10; Update MariaDB to 10.4.8; Update Redis to 5.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
colinwilson committed Nov 5, 2019
1 parent ae6f1dc commit 3c23ef7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [0.4.4] - 05-11-2019
### Update
- Upgrade Craft to [2.7.10](https://github.com/craftcms/cms/blob/master-v2/CHANGELOG-v2.md)
- Upgrade MariaDB to [10.4.8](https://mariadb.com/kb/en/library/mariadb-1043-release-notes/)
- Upgrade Redis to [5.0.6](https://raw.githubusercontent.com/antirez/redis/5.0/00-RELEASENOTES)

## [0.4.3] - 02-03-2019
### Update
- Upgrade Craft to [2.7.5](https://github.com/craftcms/cms/blob/master-v2/CHANGELOG-v2.md)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM wyveo/nginx-php-fpm:php72
MAINTAINER Colin Wilson "[email protected]"

# Set craft cms version
ENV CRAFT_VERSION=2.7 CRAFT_BUILD=5
ENV CRAFT_VERSION=2.7 CRAFT_BUILD=10

ENV CRAFT_ZIP=Craft-$CRAFT_VERSION.$CRAFT_BUILD.zip

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ This is a [Craft 3](https://craftcms.com/3) / [Craft 2](https://craftcms.com/)
#### Versioning
| Docker Tag | Git Branch | Craft Release | Database | Caching |
|-----|-------|-----|--------|--------|
| latest | craft3 | 3.1.15 | PostgreSQL 10.7 | Redis 5.0.3 |
| craft2 | craft2 | 2.7.5 | MariaDB 10.4.3 | Redis 4.0.13 |
| latest | craft3 | 3.3.14 | PostgreSQL 11.5 | Redis 5.0.6 |
| craft2 | craft2 | 2.7.10 | MariaDB 10.4.8 | Redis 5.0.6 |

Features:

- Nginx 1.15.x, PHP-FPM 7.3.x, Git 2.11.0
- Nginx 1.17.x, PHP-FPM 7.3.x, Git 2.11.0
- imageMagick image manipulation library

## Clone repo and run
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ services:
DB_PASS: secret

mariadb:
image: mariadb:10.4.3
image: mariadb:10.4.8
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_USER: craft
Expand All @@ -43,6 +43,6 @@ services:
- mariadb-data:/var/lib/mysql/data

redis:
image: redis:4.0.13-alpine
image: redis:5.0.6-alpine
volumes:
- /data:/data

0 comments on commit 3c23ef7

Please sign in to comment.