Sign inSign up

mybbsky/centos7_nextcloud

By mybbsky

Updated over 3 years ago

A safe home for all your data – community-driven, free & open source

Image
0

386

mybbsky/centos7_nextcloud repository overview

Updated to Nextcloud 26.0.0

How to Fix Nextcloud 26.0.0 serverinfo ”Server 500 Error”?

Use Vim Edit ”Php.ini” From ”disable_functions” Delete “shell_exec”

Run Command : docker exec -it webserver /bin/bash

Use Server IP: 127.0.0.1 or HostName:localhost

Server use Nginx + PHP + Mysql + Redis

Mysql password is : P@sswOd

Web Path is : /usr/local/nginx/html/

Nextcloud Path is: /usr/local/nginx/html/nextcloud

**Open localhost Mysql Server **: docker exec -it webserver /bin/bash

You can use :

'-v /home/nextcloud/data:/usr/local/nginx/html/nextcloud/data' save nextcloud data files. '-v /home/mysql/data:/data' save mysql databases.

Run:

Nextcloud Latest Version

docker run -tid --name webserver -p 80:80 -p 443:443 -p 6379:6379 -p 3306:3306 --privileged=true --restart always mybbsky/centos7_nextcloud

nextcloud 26.0.0

docker run -tid --name webserver -p 80:80 -p 443:443 -p 6379:6379 -p 3306:3306 --privileged=true --restart always mybbsky/centos7_nextcloud:26.0.0

nextcloud 25.0.5

docker run -tid --name webserver -p 80:80 -p 443:443 -p 6379:6379 -p 3306:3306 --privileged=true --restart always mybbsky/centos7_nextcloud:25.0.5

nextcloud 25.0.4

docker run -tid --name webserver -p 80:80 -p 443:443 -p 6379:6379 -p 3306:3306 --privileged=true --restart always mybbsky/centos7_nextcloud:25.0.4

nextcloud 25.0.3

docker run -tid --name webserver -p 80:80 -p 443:443 -p 6379:6379 -p 3306:3306 --privileged=true --restart always mybbsky/centos7_nextcloud:25.0.3

nextcloud 25.0.2

docker run -tid --name webserver -p 80:80 -p 443:443 -p 6379:6379 -p 3306:3306 --privileged=true --restart always mybbsky/centos7_nextcloud:25.0.2

nextcloud 25.0.1

docker run -tid --name webserver -p 80:80 -p 443:443 -p 6379:6379 -p 3306:3306 --privileged=true --restart always mybbsky/centos7_nextcloud:25.0.1

nextcloud 25.0.0

docker run -tid --name webserver -p 80:80 -p 443:443 -p 6379:6379 -p 3306:3306 --privileged=true --restart always mybbsky/centos7_nextcloud:25.0.0

nextcloud 24.0.6

docker run -tid --name webserver -p 80:80 -p 443:443 -p 6379:6379 -p 3306:3306 --privileged=true --restart always mybbsky/centos7_nextcloud:24.0.6

nextcloud 24.0.4

docker run -tid --name webserver -p 80:80 -p 443:443 -p 6379:6379 -p 3306:3306 --privileged=true --restart always mybbsky/centos7_nextcloud:24.0.4

nextcloud 24.0.2

docker run -tid --name webserver -p 80:80 -p 443:443 -p 6379:6379 -p 3306:3306 --privileged=true --restart always mybbsky/centos7_nextcloud:24.0.2

APCu+Redis

edit config.php,add

vi /usr/local/nginx/html/nextcloud/config/config.php

...... 'memcache.local' => '\OC\Memcache\APCu', 'memcache.locking' => '\OC\Memcache\Redis', 'memcache.distributed' => '\OC\Memcache\Redis', 'redis' => [ 'host' => '127.0.0.1', 'port' => 6379, 'password' => '', ],

Redis:

vi /usr/local/nginx/html/nextcloud/config/config.php

...... 'memcache.local' => '\OC\Memcache\Redis', 'memcache.locking' => '\OC\Memcache\Redis', 'memcache.distributed' => '\OC\Memcache\Redis', 'redis' => [ 'host' => '127.0.0.1', 'port' => 6379, 'password' => '', ],

APCu:

echo 'apc.enable_cli=1' >> /usr/local/php/etc/php.ini /etc/init.d/php-fpm74 restart vi /usr/local/nginx/html/nextcloud/config/config.php ...... 'memcache.local' => '\OC\Memcache\APCu', );

Thank's for All !

Tag summary

Content type

Image

Digest

sha256:5cddfcb39

Size

2.2 GB

Last updated

over 3 years ago

docker pull mybbsky/centos7_nextcloud