1
0
Fork 0
Go to file
Daniele Tricoli 8010fae13b Point to the correct root 2016-11-29 00:21:53 +01:00
.dockerignore Update ignored files 2015-05-18 10:22:55 +02:00
.gitignore Switch to git 2015-04-23 23:27:16 +02:00
Dockerfile Migrate to Nextcloud 10.0.1 2016-11-28 22:21:55 +01:00
LICENSE Migrate to Nextcloud 10.0.1 2016-11-28 22:21:55 +01:00
README.md Update README 2016-11-28 23:54:06 +01:00
crontab Migrate to Nextcloud 10.0.1 2016-11-28 22:21:55 +01:00
nextcloud.conf Point to the correct root 2016-11-29 00:21:53 +01:00
start.sh Start also cron 2016-04-23 03:55:59 +02:00

README.md

docker-nextcloud

Docker i386 image with Nextcloud and nginx. It uses SQLite as database because it is intended for personal use only (one user). It also uses two docker volumes, one for config and one for data.

Build

    docker build -t 'yourusername/nextcloud' .

Run

    docker run -d -p 127.0.0.1:9000:80 --name nextcloud \
    -v /srv/nextcloud/config:/srv/nextcloud/config \
    -v /srv/nextcloud/data:/srv/nextcloud/data eriol/nextcloud

For nextcloud >= 8.1.0 you need, on the host, to link certificates bundle inside config volume:

    ln -s /etc/ssl/certs/ca-certificates.crt /srv/nextcloud/config/ca-bundle.crt

You should use nginx on the host as reverse proxy:

    server {
       listen 80;
       server_name nextcloud.example.org;
       return 301 https://$host$request_uri;
    }

    server {
       listen 443;
       server_name owncloud.example.com;

       ssl on;
       ssl_certificate /etc/ssl/private/example_org.cert;
       ssl_certificate_key /etc/ssl/private/example_org.key;

       location / {
          proxy_pass http://127.0.0.1:9000;
          proxy_redirect off;
          proxy_buffering off;
          proxy_set_header    Host    $host;
          proxy_set_header    X-Real-IP   $remote_addr;
          proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;
       }
    }