Skip to content

Commit 1008d0d

Browse files
committed
RabbitMQ, MongoDB and ES version upgrade.
gnupg1 => gnupg2 README update.
1 parent 282ccee commit 1008d0d

File tree

5 files changed

+8
-18
lines changed

5 files changed

+8
-18
lines changed

.env.dist

+4-4
Original file line numberDiff line numberDiff line change
@@ -169,11 +169,11 @@ IONCUBE=no
169169

170170
EXTERNAL_NETWORK=no
171171

172-
RABBITMQ_VERSION=3.11.13
173-
ELASTICSEARCH_VERSION=6.8.3
172+
RABBITMQ_VERSION=3.11.15
173+
ELASTICSEARCH_VERSION=6.8.23
174174
ELK_VERSION=7.16.0
175-
# MongoDB available versions: 4.2.24, 4.4.18, 5.0.15, 6.0.4
176-
MONGODB_VERSION=6.0.4
175+
# MongoDB available versions: 4.2.24, 4.4.21, 5.0.17, 6.0.5
176+
MONGODB_VERSION=6.0.5
177177
# wkhtmltopdf available versions: 0.12.3, 0.12.4, 0.12.5, 0.12.6
178178
WKHTMLTOPDF_VERSION=0.12.3
179179

README.md

-10
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,6 @@ If you are running on Linux:
2525
sudo curl -L "https://github.com/docker/compose/releases/download/v2.12.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && sudo chmod +x /usr/local/bin/docker-compose
2626
```
2727

28-
## Install PWGen
29-
### Debian / Ubuntu
30-
```
31-
sudo apt-get install pwgen
32-
```
33-
### CentOS
34-
```
35-
wget http://download-ib01.fedoraproject.org/pub/epel/7/x86_64/Packages/p/pwgen-2.08-1.el7.x86_64.rpm && rpm -ivh pwgen-2.08-1.el7.x86_64.rpm
36-
```
37-
3828
# Configuration
3929
1. Create a `.env` from the `.env.dist` file. Adapt it according to your symfony application
4030

commands/start.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ func doNginxBuild() {
202202
func doPhpBuild() {
203203
util.Copy("config/php/Dockerfile.build", "config/php/Dockerfile")
204204

205-
packageList := []string{"gnupg1", "openssl", "git", "unzip", "libzip-dev", "nano", "libpng-dev", "libmagickwand-dev", "curl", "openssh-client", "less", "inkscape", "cron", "exiftool", "libicu-dev", "libmcrypt-dev", "libc-client-dev", "libkrb5-dev", "libssl-dev", "libxslt1-dev", "bash-completion"}
205+
packageList := []string{"gnupg2", "openssl", "git", "unzip", "libzip-dev", "nano", "libpng-dev", "libmagickwand-dev", "curl", "openssh-client", "less", "inkscape", "cron", "exiftool", "libicu-dev", "libmcrypt-dev", "libc-client-dev", "libkrb5-dev", "libssl-dev", "libxslt1-dev", "bash-completion"}
206206
peclInstall := []string{}
207207
phpExtInstall := []string{"pdo", "pdo_mysql", "opcache", "zip", "gd", "mysqli", "exif", "bcmath", "calendar", "intl", "soap", "imap", "sockets", "xsl"}
208208
phpExtEnable := []string{"mysqli", "calendar", "exif", "bcmath"}

config/nginx/Dockerfile.build

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ARG PORT_PHP
1717
MAINTAINER Vasilij Dusko <[email protected]>
1818

1919
RUN apt-get update \
20-
&& apt-get install --no-install-recommends --no-install-suggests -y gnupg1 \
20+
&& apt-get install --no-install-recommends --no-install-suggests -y gnupg2 \
2121
&& \
2222
NGINX_GPGKEY=ABF5BD827BD9BF62; \
2323
found=''; \
@@ -31,7 +31,7 @@ RUN apt-get update \
3131
apt-key adv --keyserver "$server" --keyserver-options timeout=10 --recv-keys "$NGINX_GPGKEY" && found=yes && break; \
3232
done; \
3333
test -z "$found" && echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" && exit 1; \
34-
apt-get remove --purge -y gnupg1 && apt-get -y --purge autoremove && rm -rf /var/lib/apt/lists/* \
34+
apt-get remove --purge -y gnupg2 && apt-get -y --purge autoremove && rm -rf /var/lib/apt/lists/* \
3535
&& echo "deb http://nginx.org/packages/mainline/debian/ __DEBIAN_VERSION__ nginx" >> /etc/apt/sources.list \
3636
&& apt-get update \
3737
&& apt-get install --no-install-recommends --no-install-suggests -y \

config/php/Dockerfile.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ RUN docker-php-ext-configure zip --with-libzip && docker-php-ext-configure gd --
7777
&& curl -L __CURL_INSECURE__ https://github.com/phpstan/phpstan/releases/latest/download/phpstan.phar -o /usr/local/bin/phpstan && chmod a+x /usr/local/bin/phpstan \
7878
&& curl -L __CURL_INSECURE__ https://github.com/deployphp/deployer/releases/latest/download/deployer.phar -o /usr/local/bin/dep && chmod a+x /usr/local/bin/dep \
7979

80-
&& apt-get remove --purge -y gnupg1 \
80+
&& apt-get remove --purge -y gnupg2 \
8181
&& apt-get -y --purge autoremove \
8282
__CLEANUP__
8383

0 commit comments

Comments
 (0)