Hi,
Since last week i'm experiencing this issue with nextcloud 21.1.3 :
/opt/dockerConfs/nextcloud_lagamelle.txupy.com# docker logs -f nextcloud_<domain>_html
Configuring Redis as session handler
Segmentation fault (core dumped)
Here is my docker-compose.yml file :
version: "3"
networks:
2_vnet_nextcloud_<domain>:
external: true
volumes:
db:
name: nextcloud_<domain>_db
redis:
name: nextcloud_<domain>_redis
services:
app:
container_name: nextcloud_<domain>_html
hostname: nextcloud01SRV
image: nextcloud:latest
# image: nextcloud:27.1.4
networks:
2_vnet_<domain>:
ipv4_address: 172.2.0.10
#ports:
#- "6379:6379/tcp"
restart: unless-stopped
depends_on:
db:
condition: service_started
redis:
condition: service_started
links:
- db
- redis
volumes:
# - app:/var/www/html
- /opt/HDDExt/dockerDatas/nextcloud_<domain>/app:/var/www/html
- /opt/HDDExt/dockerDatas/nextcloud_<domain>/app/data:/var/www/html/data
- "/etc/timezone:/etc/timezone:ro"
- "/etc/localtime:/etc/localtime:ro"
environment:
- MYSQL_PASSWORD=#######
- MYSQL_DATABASE=#######
- MYSQL_USER=#######
- MYSQL_HOST=db
- PHP_UPLOAD_LIMIT=40G
- PHP_MEMORY_LIMIT=8G
# - NEXTCLOUD_ADMIN_USER=#######
# - NEXTCLOUD_ADMIN_PASSWORD=#######
# - NEXTCLOUD_TRUSTED_DOMAINS=<domain>
- SMTP_HOST=smtp.office365.com
- SMTP_SECURE=TLS
- SMTP_PORT=587
- SMTP_AUTHTYPE=LOGIN
- SMTP_NAME=#######
- SMTP_PASSWORD=#######
- MAIL_FROM_ADDRESS=#######
- MAIL_DOMAIN=outlook.com
- REDIS_HOST=nextcloud_<domain>_redis
# - REDIS_HOST_PASSWORD=#######
db:
image: mariadb:10.5
container_name: nextcloud_<domain>_db
networks:
2_vnet_nextcloud_<domain>:
ipv4_address: 172.2.0.11
restart: always
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
volumes:
- "/etc/timezone:/etc/timezone:ro"
- "/etc/localtime:/etc/localtime:ro"
# - db:/var/lib/mysql
- /opt/HDDExt/dockerDatas/nextcloud_<domain>/db:/var/lib/mysql
# - /opt/HDDExt/dockerDatas/nextcloud_<domain>/db:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=#######
- MYSQL_PASSWORD=#######
- MYSQL_DATABASE=#######
- MYSQL_USER=#######
redis:
image: redis
container_name: nextcloud_<domain>_redis
networks:
2_vnet_nextcloud_<domain>:
ipv4_address: 172.2.0.12
volumes:
- /opt/HDDExt/dockerDatas/nextcloud_<domain>/redis:/data
- "/etc/timezone:/etc/timezone:ro"
- "/etc/localtime:/etc/localtime:ro"
restart: always
# command: redis-server –requirepass #######
Pulling latest image does not work anymore (i was waiting for 27.1.4 to test).
Even if i'm creating a fresh docker instance using the default yml file etc, i have the same issue with branch 27.1 (last version mentionned in config.php is 27.1.3).
But i'm able to create a new instance via 27.0.2, it's running fine.
So i suspect a change in 27.1 (i think it was between 27.1.2 and 27.1.3) but can't downgrade, and container is still starting so i can't use docker exec to explore.
Sorry for my english, and for your help.
Hi,
Since last week i'm experiencing this issue with nextcloud 21.1.3 :
Here is my docker-compose.yml file :
Pulling latest image does not work anymore (i was waiting for 27.1.4 to test).
Even if i'm creating a fresh docker instance using the default yml file etc, i have the same issue with branch 27.1 (last version mentionned in config.php is 27.1.3).
But i'm able to create a new instance via 27.0.2, it's running fine.
So i suspect a change in 27.1 (i think it was between 27.1.2 and 27.1.3) but can't downgrade, and container is still starting so i can't use docker exec to explore.
Sorry for my english, and for your help.