Skip to content

Commit d2da856

Browse files
committed
Merge branch 'release-3.8.0' into stable
2 parents 4f7ad84 + 6b26e9c commit d2da856

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [3.8.0] - 2019-01-22
8+
### Changed
9+
- Matomo 3.8.0
10+
711
## [3.7.0] - 2018-11-29
812
### Changed
913
- Matomo 3.7.0
@@ -84,6 +88,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
8488
## 2.16.2 - 2016-09-24
8589
Initial release
8690

91+
[3.8.0]: https://github.com/osixia/docker-matomo/compare/v3.8.0...v3.8.0
8792
[3.7.0]: https://github.com/osixia/docker-matomo/compare/v3.6.1...v3.7.0
8893
[3.6.1]: https://github.com/osixia/docker-matomo/compare/v3.6.0...v3.6.1
8994
[3.6.0]: https://github.com/osixia/docker-matomo/compare/v3.5.1...v3.6.0

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME = osixia/matomo
2-
VERSION = 3.7.0
2+
VERSION = 3.8.0
33

44
.PHONY: build build-nocache test tag-latest push push-latest release git-tag-version
55

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[hub]: https://hub.docker.com/r/osixia/matomo/
88

9-
Latest release: 3.7.0 - Matomo 3.7.0 - [Changelog](CHANGELOG.md) | [Docker Hub](https://hub.docker.com/r/osixia/matomo/) 
9+
Latest release: 3.8.0 - Matomo 3.8.0 - [Changelog](CHANGELOG.md) | [Docker Hub](https://hub.docker.com/r/osixia/matomo/) 
1010

1111
**A docker image to run Matomo (formerly Piwik).**
1212
> [matomo.org](https://matomo.org)

Diff for: image/Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM osixia/web-baseimage:1.1.1
22

33
# Matomo version
4-
ARG MATOMO_VERSION=3.7.0
4+
ARG MATOMO_VERSION=3.8.0
55

66
# MariaDB version
77
ARG MARIADB_MAJOR=10.3
@@ -11,7 +11,7 @@ ARG MARIADB_MAJOR=10.3
1111
# php7.0-fpm install will detect apache2 and configure it
1212

1313
# Add MariaDB repository
14-
RUN apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xF1656F24C74CD1D8 \
14+
RUN apt-key adv --no-tty --recv-keys --keyserver keyserver.ubuntu.com 0xF1656F24C74CD1D8 \
1515
&& echo "deb http://ftp.igh.cnrs.fr/pub/mariadb/repo/$MARIADB_MAJOR/debian stretch main" > /etc/apt/sources.list.d/mariadb.list \
1616
&& { \
1717
echo 'Package: *'; \
@@ -41,8 +41,8 @@ RUN apt-get update \
4141
&& mkdir -p /var/www/matomo_bootstrap /var/www/matomo \
4242
&& tar -xzf matomo.tar.gz --strip 1 -C /var/www/matomo_bootstrap \
4343
&& echo "${MATOMO_VERSION}" > /var/www/matomo_bootstrap/VERSION \
44-
&& curl -fsSL -o /var/www/matomo_bootstrap/misc/GeoIPCity.dat.gz https://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz \
45-
&& gunzip /var/www/matomo_bootstrap/misc/GeoIPCity.dat.gz \
44+
&& curl -fsSL -o /var/www/matomo_bootstrap/misc/GeoLite2-City.tar.gz https://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz \
45+
&& gunzip /var/www/matomo_bootstrap/misc/GeoLite2-City.tar.gz \
4646
&& apt-get remove -y --purge --auto-remove curl \
4747
&& rm matomo.tar.gz \
4848
&& apt-get clean \

0 commit comments

Comments
 (0)