Skip to content

Commit

Permalink
Update system dependencies
Browse files Browse the repository at this point in the history
Staying with PHP 7.2 for now, will update to 7.4 eventually
  • Loading branch information
ngyikp committed Mar 27, 2020
1 parent 4b2af82 commit b687fb5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
# - mariadb

mariadb:
image: mariadb:10.4.11
image: mariadb:10.4.12
environment:
MYSQL_ROOT_PASSWORD_FILE: /run/secrets/mariadb_root_password
MYSQL_DATABASE: ${DB_DATABASE}
Expand Down Expand Up @@ -46,7 +46,7 @@ services:
working_dir: /var/ricochetuniverse

redis:
image: redis:5.0.7-alpine
image: redis:5.0.8-alpine
# uncomment for debugging
# ports:
# - '6379:6379'
Expand Down
6 changes: 3 additions & 3 deletions docker/php/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM php:7.2.26-fpm-alpine3.10
FROM php:7.2.29-fpm-alpine3.11

ENV REDIS_VERSION 5.1.1
ENV REDIS_VERSION 5.2.1

RUN apk update && apk upgrade && \
apk add --no-cache git && \
Expand All @@ -15,6 +15,6 @@ RUN apk update && apk upgrade && \

COPY extra.ini $PHP_INI_DIR/conf.d/

COPY --from=composer:1.9.1 /usr/bin/composer /usr/bin/composer
COPY --from=composer:1.10.1 /usr/bin/composer /usr/bin/composer

WORKDIR /var/ricochetuniverse

0 comments on commit b687fb5

Please sign in to comment.