add versions

This commit is contained in:
Robert Nasarek 2023-05-11 14:33:19 +02:00
parent 5c03bf7e79
commit 0f02fee487
2 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@ version: "3.8"
services: services:
postgres: postgres:
image: rnsrk/postgres:alpine image: rnsrk/postgres:15.2-alpine
build: build:
context: ./postgres_context context: ./postgres_context
container_name: postgres container_name: postgres
@ -24,7 +24,7 @@ services:
- ./volumes/drupal/private_files:/var/www/private_files - ./volumes/drupal/private_files:/var/www/private_files
solr: solr:
image: solr:8-slim image: solr:8.11.2-slim
container_name: solr container_name: solr
restart: unless-stopped restart: unless-stopped
volumes: volumes:
@ -42,12 +42,12 @@ services:
- graphdb_data:/graphdb/data - graphdb_data:/graphdb/data
adminer: adminer:
image: adminer:fastcgi image: adminer:4.8.1-fastcgi
container_name: adminer container_name: adminer
restart: unless-stopped restart: unless-stopped
webserver: webserver:
image: nginx:1.23-alpine image: nginx:1.23.4-alpine
container_name: webserver container_name: webserver
depends_on: depends_on:
- drupal - drupal

View file

@ -1,4 +1,4 @@
FROM postgres:alpine FROM postgres:15.2-alpine
# Copy in the extensions script # Copy in the extensions script
COPY extensions.sh /docker-entrypoint-initdb.d/ COPY extensions.sh /docker-entrypoint-initdb.d/