Skip to content

Commit

Permalink
chore(deps): update docker dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Mar 1, 2024
1 parent b09135d commit 63434fb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion containers/nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nginx:1.25.2-alpine as production
FROM nginx:1.25.4-alpine as production
WORKDIR /var/www/html
ADD https://github.com/eficode/wait-for/releases/download/v2.2.4/wait-for /usr/local/bin/
COPY containers/nginx/start.sh /usr/local/bin/start
Expand Down
4 changes: 2 additions & 2 deletions containers/php/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM php:8.1.19-fpm-alpine as base
WORKDIR /var/www/html/
COPY --from=mlocati/php-extension-installer:2.1.49 /usr/bin/install-php-extensions /usr/local/bin/
COPY --from=mlocati/php-extension-installer:2.2.2 /usr/bin/install-php-extensions /usr/local/bin/
RUN install-php-extensions \
opcache \
pcntl \
pdo_pgsql \
pgsql \
redis \
zip
COPY --from=composer:2.5.8 /usr/bin/composer /usr/local/bin/composer
COPY --from=composer:2.7.1 /usr/bin/composer /usr/local/bin/composer

FROM base as vendor
COPY composer.json .
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
volumes:
- redis:/data
database:
image: postgres:14.9-alpine
image: postgres:14.11-alpine
healthcheck:
test: [ "CMD", "pg_isready", "-q", "-d", "phonehome", "-U", "phonehome" ]
volumes:
Expand Down
4 changes: 2 additions & 2 deletions deploy/ns8/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.16.0-alpine as node_base
FROM node:18.19.1-alpine as node_base
WORKDIR /app

FROM node_base as node_modules
Expand Down Expand Up @@ -28,7 +28,7 @@ LABEL org.nethserver.rootfull="0"
ARG PHONEHOME_TAG=latest
ARG PHONEHOME_SERVER_APP=ghcr.io/nethserver/phonehome-server-app
ARG PHONEHOME_SERVER_WEB=ghcr.io/nethserver/phonehome-server-web
LABEL org.nethserver.images="docker.io/postgres:14.9-alpine \
LABEL org.nethserver.images="docker.io/postgres:14.11-alpine \
docker.io/redis:6.2.12-alpine \
$PHONEHOME_SERVER_APP:$PHONEHOME_TAG \
$PHONEHOME_SERVER_WEB:$PHONEHOME_TAG"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
- pgsql
- redis
pgsql:
image: postgres:14.9-alpine
image: postgres:14.11-alpine
ports:
- '${FORWARD_DB_PORT:-5432}:5432'
environment:
Expand Down

0 comments on commit 63434fb

Please sign in to comment.