Browse Source

Merge pull request 'Nextcloud auf 20.X aktualisieren' (#6) from 20.X-Preperation into master

Reviewed-on: #6
master
Timm 4 years ago
parent
commit
dd17404081
1 changed files with 8 additions and 5 deletions
  1. +8
    -5
      docker-compose.yml

+ 8
- 5
docker-compose.yml View File

@ -9,7 +9,7 @@ networks:
services: services:
db: db:
image: mariadb:10.5.3
image: mariadb:10.6
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
restart: always restart: always
volumes: volumes:
@ -21,14 +21,17 @@ services:
- backend-nextcloud - backend-nextcloud
redis: redis:
image: redis:6.0-alpine
image: redis:6.2-alpine
container_name: nextcloud-redis container_name: nextcloud-redis
env_file:
- redis.env
command: redis-server --requirepass ${REDIS_HOST_PASSWORD}
networks: networks:
- backend-nextcloud - backend-nextcloud
restart: always restart: always
app: app:
image: nextcloud:19.0.7-fpm-alpine
image: nextcloud:20.0.0-fpm-alpine
restart: always restart: always
volumes: volumes:
- /opt/docker/nextcloud/app:/var/www/html - /opt/docker/nextcloud/app:/var/www/html
@ -46,7 +49,7 @@ services:
container_name: nextcloud container_name: nextcloud
web: web:
image: nginx:1.19-alpine
image: nginx:1.20-alpine
restart: always restart: always
volumes: volumes:
- /opt/docker/nextcloud/app:/var/www/html:ro - /opt/docker/nextcloud/app:/var/www/html:ro
@ -59,7 +62,7 @@ services:
container_name: nextcloud-nginx container_name: nextcloud-nginx
cron: cron:
image: nextcloud:19.0.7-fpm-alpine
image: nextcloud:20.0.0-fpm-alpine
restart: always restart: always
volumes: volumes:
- /opt/docker/nextcloud/app:/var/www/html - /opt/docker/nextcloud/app:/var/www/html


Loading…
Cancel
Save