feat: Remove necessary redis password
This issue is already fix by https://github.com/nextcloud/docker/pull/1232
This commit is contained in:
parent
8507310cd1
commit
9ea9f977bc
|
@ -23,7 +23,3 @@ POSTGRES_PASSWORD=password-example
|
||||||
POSTGRES_DB=postgres-database-name-example
|
POSTGRES_DB=postgres-database-name-example
|
||||||
POSTGRES_CONTAINER_NAME=nextcloud-postgres
|
POSTGRES_CONTAINER_NAME=nextcloud-postgres
|
||||||
POSTGRES_VOLUME_NAME=nextcloud-postgres
|
POSTGRES_VOLUME_NAME=nextcloud-postgres
|
||||||
|
|
||||||
# REDIS
|
|
||||||
|
|
||||||
NEXTCLOUD_REDIS_PASSWORD=redis-password
|
|
||||||
|
|
|
@ -37,7 +37,6 @@ services:
|
||||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
POSTGRES_USER: ${POSTGRES_USER}
|
POSTGRES_USER: ${POSTGRES_USER}
|
||||||
REDIS_HOST: 'nextcloud-redis'
|
REDIS_HOST: 'nextcloud-redis'
|
||||||
REDIS_HOST_PASSWORD: ${NEXTCLOUD_REDIS_PASSWORD}
|
|
||||||
PUID: 1001
|
PUID: 1001
|
||||||
PGID: 119
|
PGID: 119
|
||||||
labels:
|
labels:
|
||||||
|
@ -65,7 +64,6 @@ services:
|
||||||
image: redis:6.0.9-alpine
|
image: redis:6.0.9-alpine
|
||||||
container_name: nextcloud-redis
|
container_name: nextcloud-redis
|
||||||
restart: always
|
restart: always
|
||||||
command: redis-server --requirepass ${NEXTCLOUD_REDIS_PASSWORD}
|
|
||||||
environment:
|
environment:
|
||||||
PUID: 1001
|
PUID: 1001
|
||||||
PGID: 119
|
PGID: 119
|
||||||
|
|
Loading…
Reference in New Issue