nextcloud container on debian jessie with apache and php - ssl only
1.2K
maintained by ServerContainers
FAQ - All you need to know about the servercontainers Containers
This Dockerfile (available as servercontainers/nextcloud) gives you a Nextcloud-Server with Apache/PHP on Debian.
On the first start (or if Database Table is empty), the setup is executed as specified by environment variables.
For Configuration of the Server you use environment Variables.
If you want to use this in a public/production environment, use this behind a proxy - e.g. servercontainers/nginx.
It's based on the debian:jessie Image
View in Docker Registry servercontainers/nextcloud
View in GitHub ServerContainers/nextcloud
CUSTOM_PLUGINS
ADMIN_USER
ADMIN_PASSWORD
KEEP_INSTALLATION_FOLDERS
to enable automatic installation you need to set all of the following envs.
You might want to edit the config.php manualy to add and modify custom settings.
'mail_smtpmode' => 'sendmail',
'mail_from_address' => 'admin',
'mail_domain' => 'nextcloud.my.tld',
'user_backends' => array (
0 => array (
'class' => 'OC_User_IMAP',
'arguments' => array (
0 => '{imap.gmail.com:993/imap/ssl}'
),
),
),
wget -O - https://nextcloud.com/changelog/ 2> /dev/null | tr '>' '\n' | tr '<' '\n' | grep Version | head -n1 | awk '{print $2}'
Content type
Image
Digest
Size
198 MB
Last updated
over 8 years ago
docker pull servercontainers/nextcloud