update image tags; pin psql

This commit is contained in:
LRVT 2024-10-01 10:22:38 +02:00
parent fe124289a0
commit da67dae99b
11 changed files with 46 additions and 16 deletions

View File

@ -28,7 +28,7 @@ services:
# - traefik.http.routers.docuseal.middlewares=local-ipwhitelist@file,authelia@docker
postgres:
image: postgres:15-alpine
image: postgres:16-alpine
container_name: docuseal-db
restart: unless-stopped
environment:

View File

@ -29,7 +29,7 @@ services:
# - traefik.http.routers.evershop.middlewares=local-ipwhitelist@file,authelia@docker
database:
image: postgres:16
image: postgres:16-alpine
container_name: evershop-db
restart: unless-stopped
volumes:

View File

@ -3,7 +3,7 @@ version: '3'
services:
database:
image: postgres:13.4-alpine
image: postgres:16-alpine
container_name: hedgedoc-db
environment:
- POSTGRES_USER=hedgedoc

View File

@ -23,7 +23,7 @@ services:
- frontend
db:
image: postgres:13
image: postgres:16-alpine
container_name: librephotos-db
restart: unless-stopped
environment:

View File

@ -11,7 +11,7 @@ services:
# - proxy
db:
image: docker.io/library/postgres:13
image: docker.io/library/postgres:16-alpine
container_name: paperless-ngx-db
restart: unless-stopped
volumes:

View File

@ -39,7 +39,7 @@ services:
# - traefik.http.routers.papermerge.middlewares=local-ipwhitelist@file,authelia@docker
db:
image: postgres:12.3-alpine
image: postgres:16-alpine
container_name: papermerge-db
restart: unless-stopped
expose:

View File

@ -2,7 +2,7 @@ version: '3'
services:
db:
image: postgres:13
image: postgres:16-alpine
container_name: raveberry-db
environment:
- POSTGRES_DB=raveberry

View File

@ -23,7 +23,7 @@ version: "3.8"
services:
postgres:
image: postgres:alpine
image: postgres:16-alpine
container_name: rxresume-db
restart: always
expose:

View File

@ -2,7 +2,7 @@ version: "3"
services:
sonarqube:
image: sonarqube:8.5.1-community
image: sonarqube:lts-community
container_name: sonarqube
ports:
- 9000:9000 # WEB UI
@ -16,7 +16,7 @@ services:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/sonarqube/extensions:/opt/sonarqube/extensions
db:
image: postgres:13.1
image: postgres:16-alpine
container_name: sonarqube_db
hostname: db
environment:

View File

@ -3,7 +3,7 @@ services:
db_recipes:
restart: always
container_name: tandoor_db
image: postgres:11-alpine
image: postgres:16-alpine
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/tandoor/postgresql:/var/lib/postgresql/data
env_file:

View File

@ -2,13 +2,21 @@ version: "3"
services:
wikijs:
image: linuxserver/wikijs:latest
container_name: wikijs
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
image: linuxserver/wikijs:latest
container_name: wikijs
restart: unless-stopped
- DB_TYPE=postgres
- DB_HOST=db
- DB_PORT=5432
- DB_NAME=wikijs
- DB_USER=wikijs
- DB_PASS=MySecureDatabasePassword
expose:
- 3000
ports:
- 8888:3000 # WEB UI
volumes:
@ -16,14 +24,36 @@ services:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/wikijs/data:/data
links:
- db
#networks:
# - proxy
#labels:
# - traefik.enable=true
# - traefik.docker.network=proxy
# - traefik.http.routers.wikijs.rule=Host(`wikijs.example.com`)
# - traefik.http.services.wikijs.loadbalancer.server.port=3000
# # Optional part for file upload max sizes
# - traefik.http.middlewares.limit.buffering.maxRequestBodyBytes=50000000
# - traefik.http.middlewares.limit.buffering.maxResponseBodyBytes=50000000
# - traefik.http.middlewares.limit.buffering.memRequestBodyBytes=50000000
# - traefik.http.middlewares.limit.buffering.memResponseBodyBytes=50000000
# # Optional part for traefik middlewares
# - traefik.http.routers.wikijs.middlewares=local-ipwhitelist@file
db:
image: postgres:16-alpine
container_name: postgresql
environment:
- POSTGRES_PASSWORD=MySecureDatabasePassword
- POSTGRES_USER=wikijs
- POSTGRES_DB=wikijs
container_name: postgresql
image: postgres:13.4-bullseye
expose:
- 5432
restart: unless-stopped
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/wikijs/database:/var/lib/postgresql/data
#networks:
# - proxy
#networks:
# proxy:
# external: true