Skip to content

Commit

Permalink
docker update
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubKermes committed Apr 17, 2024
1 parent 61b0ff0 commit 17b931e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docker-compose.staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ services:
condition: service_healthy

database:
image: postgres:15.2-alpine3.17
image: postgres:15.6-alpine3.19
container_name: escooters-db-staging
environment:
- POSTGRES_USER=${DB_USERNAME}
Expand All @@ -64,7 +64,7 @@ services:
restart: unless-stopped

redis:
image: redis:7.0.11-alpine3.17
image: redis:7.2.4-alpine3.19
container_name: escooters-redis-staging
ports:
- ${DOCKER_REDIS_HOST_PORT:-3852}:6379
Expand Down
9 changes: 5 additions & 4 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,12 @@ services:
condition: service_healthy

database:
image: postgres:15.2-alpine3.17
image: postgres:15.6-alpine3.19
container_name: escooters-db-dev
environment:
- POSTGRES_USER=${DB_USERNAME}
- POSTGRES_PASSWORD=${DB_PASSWORD}
- POSTGRES_PASSWORD=${DB_PASSWORD}FROM node:21.7.1-bullseye-slim as node

- POSTGRES_DB=${DB_DATABASE}
- PGDATA=/var/lib/postgresql/data
healthcheck:
Expand All @@ -72,7 +73,7 @@ services:
restart: unless-stopped

mailpit:
image: axllent/mailpit:v1.6.9
image: axllent/mailpit:v1.16
container_name: escooters-mailpit-dev
labels:
- "traefik.enable=true"
Expand All @@ -95,7 +96,7 @@ services:
- ${DOCKER_MAILPIT_DASHBOARD_HOST_PORT:-3856}:8025

redis:
image: redis:7.0.11-alpine3.17
image: redis:7.2.4-alpine3.19
container_name: escooters-redis-dev
ports:
- ${DOCKER_REDIS_HOST_PORT:-3852}:6379
Expand Down
2 changes: 1 addition & 1 deletion environment/staging/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM composer/composer:2.6.6-bin as composer-bin

FROM node:20.4.0-bullseye-slim as node
FROM node:21.7.1-bullseye-slim as node

FROM php:8.3.3-fpm-bullseye

Expand Down

0 comments on commit 17b931e

Please sign in to comment.