File tree 4 files changed +11
-6
lines changed
4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 3.8.0] - 2019-01-22
8
+ ### Changed
9
+ - Matomo 3.8.0
10
+
7
11
## [ 3.7.0] - 2018-11-29
8
12
### Changed
9
13
- Matomo 3.7.0
@@ -84,6 +88,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
84
88
## 2.16.2 - 2016-09-24
85
89
Initial release
86
90
91
+ [ 3.8.0 ] : https://github.com/osixia/docker-matomo/compare/v3.8.0...v3.8.0
87
92
[ 3.7.0 ] : https://github.com/osixia/docker-matomo/compare/v3.6.1...v3.7.0
88
93
[ 3.6.1 ] : https://github.com/osixia/docker-matomo/compare/v3.6.0...v3.6.1
89
94
[ 3.6.0 ] : https://github.com/osixia/docker-matomo/compare/v3.5.1...v3.6.0
Original file line number Diff line number Diff line change 1
1
NAME = osixia/matomo
2
- VERSION = 3.7 .0
2
+ VERSION = 3.8 .0
3
3
4
4
.PHONY : build build-nocache test tag-latest push push-latest release git-tag-version
5
5
Original file line number Diff line number Diff line change 6
6
7
7
[ hub ] : https://hub.docker.com/r/osixia/matomo/
8
8
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/ )
10
10
11
11
** A docker image to run Matomo (formerly Piwik).**
12
12
> [ matomo.org] ( https://matomo.org )
Original file line number Diff line number Diff line change 1
1
FROM osixia/web-baseimage:1.1.1
2
2
3
3
# Matomo version
4
- ARG MATOMO_VERSION=3.7 .0
4
+ ARG MATOMO_VERSION=3.8 .0
5
5
6
6
# MariaDB version
7
7
ARG MARIADB_MAJOR=10.3
@@ -11,7 +11,7 @@ ARG MARIADB_MAJOR=10.3
11
11
# php7.0-fpm install will detect apache2 and configure it
12
12
13
13
# 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 \
15
15
&& echo "deb http://ftp.igh.cnrs.fr/pub/mariadb/repo/$MARIADB_MAJOR/debian stretch main" > /etc/apt/sources.list.d/mariadb.list \
16
16
&& { \
17
17
echo 'Package: *' ; \
@@ -41,8 +41,8 @@ RUN apt-get update \
41
41
&& mkdir -p /var/www/matomo_bootstrap /var/www/matomo \
42
42
&& tar -xzf matomo.tar.gz --strip 1 -C /var/www/matomo_bootstrap \
43
43
&& 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 \
46
46
&& apt-get remove -y --purge --auto-remove curl \
47
47
&& rm matomo.tar.gz \
48
48
&& apt-get clean \
You can’t perform that action at this time.
0 commit comments